-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"name": "project-g",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "run-script-os",
"build:darwin:linux": "VITE_APP_ENV=production vite build",
"build:win32": "set VITE_APP_ENV=production&& vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"tauri": "tauri",
"app": "tauri dev",
"add-components": "npx shadcn-svelte@latest add",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.15.1",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tauri-apps/cli": "^2.2.4",
"@types/eslint": "^9.6.0",
"autoprefixer": "^10.4.20",
"bits-ui": "^0.22.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.5.1",
"prettier-plugin-svelte": "^3.3.3",
"run-script-os": "^1.1.6",
"sass": "^1.83.4",
"svelte": "^4.2.7",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^5.4.14"
},
"type": "module",
"dependencies": {
"@tauri-apps/api": "2.2.0",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"clsx": "^2.1.1",
"mode-watcher": "^0.5.1",
"svelte-radix": "^1.1.1",
"svelte-relative-time": "^0.0.6",
"svelte-sonner": "^0.3.27",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.3.1"
},
"lint-staged": {
"**/*.{svelte,css,html,json,ts}": "prettier --write",
"src-tauri/**/*.rs": "rustfmt"
}
}