-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
{
"name": "chrm-rev",
"type": "module",
"version": "1.1.0",
"packageManager": "pnpm@10.33.0",
"scripts": {
"tauri": "tauri",
"dev:con": "concurrently \"pnpm dev\" \"pnpm docs:dev\"",
"build:con": "pnpm build && pnpm docs:build",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"type-check": "vue-tsc --build",
"ts-rs": "cargo test export_bindings --lib"
},
"dependencies": {
"@antdv-next/icons": "^1.0.6",
"@guolao/vue-monaco-editor": "^1.6.0",
"@tanstack/vue-query": "^5.99.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-store/pinia": "^4.2.0",
"@vueuse/core": "^14.2.1",
"antdv-next": "1.2.0",
"axios": "^1.15.0",
"clsx": "^2.1.1",
"monaco-editor": "^0.55.1",
"pinia": "^3.0.4",
"tailwind-merge": "^3.5.0",
"tauri-plugin-axum-api": "^0.9.0",
"vue": "^3.5.32",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@antdv-next/auto-import-resolver": "^1.0.7",
"@antdv-next/tailwind": "^1.0.2",
"@antfu/eslint-config": "^8.2.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.10.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"@vue/tsconfig": "^0.9.1",
"autoprefixer": "^10.5.0",
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
"jiti": "^2.6.1",
"postcss": "^8.5.10",
"postcss-load-config": "^6.0.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.0.0",
"vite": "^8.0.8",
"vitepress": "2.0.0-alpha.17",
"vue-tsc": "^3.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"vue-demi"
]
}
}