-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "mind",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"description": "A desktop application focused on empowering the future with AI.",
"scripts": {
"dev": "vite",
"build:server": "zx ./scripts/build-server.js",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:rust": "cd src-tauri && cargo fmt",
"tauri": "tauri",
"prepare": "husky"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "~2.3.0",
"@tauri-apps/plugin-store": "~2.3.0",
"@vueuse/core": "^13.5.0",
"ohash": "^2.0.11",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^4.17.0",
"@iconify/json": "^2.2.359",
"@iconify/tailwind4": "^1.0.6",
"@tailwindcss/vite": "^4.1.11",
"@tauri-apps/cli": "^2",
"@types/node": "22",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.31.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"tailwindcss": "^4.1.11",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10",
"zx": "^8.7.1"
},
"lint-staged": {
"*": "pnpm lint:fix",
"src-tauri/src/**/*.rs": "cd src-tauri && cargo fmt"
}
}