-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.48 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
{
"name": "ai-manager",
"version": "0.4.1",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"generate:tauri-icons": "pnpm tauri icon src-tauri/icons/icon.png -o src-tauri/generated-icons",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tests/tsconfig.json",
"fmt:rust": "cargo fmt --manifest-path src-tauri/Cargo.toml -- --check",
"test:rust": "pnpm run generate:tauri-icons && cargo test --manifest-path src-tauri/Cargo.toml",
"lint:ts": "pnpm run typecheck && pnpm run typecheck:test && biome check .",
"lint:rust": "pnpm run generate:tauri-icons && cargo clippy --workspace --all-targets --manifest-path src-tauri/Cargo.toml -- -D warnings",
"lint": "pnpm run lint:ts && pnpm run lint:rust",
"check": "pnpm run lint && pnpm test",
"ci:web": "pnpm run lint:ts && pnpm test && pnpm run build",
"ci:rust": "pnpm run fmt:rust && pnpm run lint:rust && pnpm run test:rust",
"ci": "pnpm run ci:web && pnpm run ci:rust",
"dev": "vite",
"build": "pnpm run typecheck && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"package:macos:dmg": "node ./scripts/package-macos-dmg.mjs",
"test": "pnpm run test:contracts && pnpm run test:web:unit",
"test:contracts": "node --test tests/error-ui-contract.test.mjs tests/normalized-domain-model.test.mjs tests/support-matrix.test.mjs tests/mvp-acceptance-contract.test.mjs",
"test:web:unit": "vitest run",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,css,md,yml,yaml}": "biome check --write --no-errors-on-unmatched",
"*.rs": "sh -c 'cargo fmt --manifest-path src-tauri/Cargo.toml'"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-opener": "^2.5.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "^2.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}