-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "plain",
"packageManager": "yarn@4.9.1",
"version": "0.0.0",
"type": "module",
"scripts": {
"serve": "vite preview",
"build": "vite build",
"lint": "eslint . --fix",
"dev": "vite",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.2",
"@codemirror/language-data": "^6.5.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"@noble/ciphers": "^1.3.0",
"@noble/hashes": "^2.0.1",
"htmlparser2": "^8.0.1",
"jszip": "^3.10.1",
"katex": "^0.16.45",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-texmath": "^1.0.0",
"pinia": "^3.0.2",
"vue": "^3.5.16",
"vue-i18n": "^11.1.10",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.45",
"@iconify-json/material-symbols": "^1.2.23",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vitejs/plugin-vue-jsx": "^4.2.0",
"@vue/compiler-sfc": "^3.5.16",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.28.0",
"eslint-plugin-vue": "^10.1.0",
"happy-dom": "^20.9.0",
"prettier": "^3.5.3",
"sass": "^1.89.1",
"typescript": "~5.8.3",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.7.0",
"vite": "^5.4.21",
"vite-svg-loader": "^5.1.0",
"vitest": "^2",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.2.10"
}
}