-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.32 KB
/
package.json
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
74
75
{
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"tauri": "tauri",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I"
},
"dependencies": {
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@tauri-apps/api": "^2.0.0-beta.8",
"@tauri-apps/plugin-fs": "2.0.0-beta.2",
"@types/crypto-js": "^4.2.2",
"@vicons/ionicons5": "^0.12.0",
"@vueuse/core": "^9.13.0",
"axios": "^1.6.8",
"better-mock": "^0.3.7",
"codemirror": "^6.0.1",
"crypto-js": "^4.2.0",
"ejs": "^3.1.10",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"naive-ui": "^2.38.1",
"vue": "^3.4.23",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.15.0",
"@iconify-json/carbon": "^1.1.31",
"@iconify/vue": "^4.1.2",
"@tauri-apps/cli": "^2.0.0-beta.13",
"@types/ejs": "^3.1.5",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@unocss/eslint-config": "^0.59.4",
"@unocss/eslint-plugin": "^0.59.4",
"@unocss/reset": "^0.59.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-macros/volar": "^0.18.18",
"@vue/test-utils": "^2.4.5",
"eslint": "^9.1.0",
"eslint-plugin-format": "^0.1.1",
"jsdom": "^24.0.0",
"pinia": "^2.1.7",
"pnpm": "^9.0.5",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.6",
"typescript": "^5.4.5",
"unocss": "^0.59.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-macros": "^2.9.1",
"vite": "^5.2.10",
"vite-plugin-pages": "^0.32.1",
"vitest": "^0.30.1",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.14"
},
"eslintConfig": {
"extends": [
"@antfu",
"@unocss"
]
}
}