-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "beanfun",
"private": true,
"version": "5.9.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "2.7.0",
"@tauri-apps/plugin-opener": "^2",
"element-plus": "^2.13.7",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"sortablejs": "^1.15.7",
"vue": "^3.5.13",
"vue-i18n": "^11.3.2",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/node": "^25.6.0",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^10.8.0",
"fast-xml-parser": "^5.7.1",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitest": "^4.1.4",
"vue-tsc": "^2.1.10"
}
}