-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.6 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
{
"name": "claude-code-tool-manager",
"version": "3.8.3",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"tauri": "tauri",
"sync-version": "node -e \"const fs=require('fs');const pkg=require('./package.json');const tauri=require('./src-tauri/tauri.conf.json');if(pkg.version!==tauri.version){tauri.version=pkg.version;fs.writeFileSync('./src-tauri/tauri.conf.json',JSON.stringify(tauri,null,2)+'\\n');console.log('✅ Synced tauri.conf.json to version',pkg.version)}else{console.log('✅ Versions already in sync')}\"",
"coverage:rust": "cd src-tauri && cargo llvm-cov --html --output-dir target/coverage && start target/coverage/html/index.html",
"coverage:rust:text": "cd src-tauri && cargo llvm-cov",
"coverage:svelte": "vitest run --coverage && start coverage/index.html",
"coverage:svelte:text": "vitest run --coverage",
"coverage:ui": "vitest --coverage --ui",
"coverage:all": "npm run coverage:svelte:text && cd src-tauri && cargo llvm-cov --html --output-dir target/coverage && start ..\\coverage\\index.html && start target\\coverage\\html\\index.html",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test:run && npm run test:e2e",
"prepare": "git config core.hooksPath .githooks"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-sql": "^2",
"@tauri-apps/plugin-updater": "^2.10.0",
"lucide-svelte": "^0.577.0",
"svelte-dnd-action": "^0.9.69"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.8.4",
"jest-dom": "^4.0.0",
"jsdom": "^28.0.0",
"postcss": "^8.5.8",
"svelte": "^5.49.1",
"svelte-check": "^4.4.4",
"tailwindcss": "^4.2.0",
"typescript": "^5.7.2",
"vite": "^8.0.1",
"vitest": "^4.1.0"
}
}