-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "stackmind",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Markdown + mindmap editor",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.34.0",
"codemirror": "^6.0.1",
"markdown-it": "^14.1.1",
"markmap-common": "^0.18.9",
"markmap-lib": "^0.18.0",
"mind-elixir": "^5.11.0",
"pinia": "^2.3.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.7.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/ui": "^4.1.6",
"@vue/tsconfig": "^0.7.0",
"jsdom": "^29.1.1",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^4.1.6",
"vue-tsc": "^2.1.0"
}
}