-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.78 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.78 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": "carbonpaper",
"private": true,
"version": "0.7.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:frontend": "vitest run",
"test:frontend:watch": "vitest",
"test:frontend:coverage": "vitest run --coverage",
"test:frontend:ci": "vitest run --coverage --reporter=dot",
"test:python": "python -m pytest monitor/tests -q --timeout=15",
"test:python:regression": "python -m pytest monitor/tests/test_storage_client_ipc.py monitor/tests/test_storage_client_error_paths.py monitor/tests/test_task_clustering_concurrency.py monitor/tests/test_task_clustering_scheduler_paths.py monitor/tests/test_monitor_command_dispatch.py monitor/tests/test_ipc_pipe_request_integrity.py monitor/tests/test_ipc_pipe_auth_guard.py -q --timeout=15",
"test:python:prebundle-sync": "python -m pytest monitor/tests/test_prebundle_sync.py -q --timeout=15",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml --lib",
"test:backend:fast": "npm run test:python:regression && npm run test:rust && npm run test:python:prebundle-sync",
"tauri": "tauri",
"debug": "tauri dev",
"i18n:extract": "i18next-scanner --config i18next-scanner.config.cjs 'src/**/*.{js,jsx,ts,tsx}'",
"i18n:check": "node scripts/i18n-check.cjs",
"codemod:i18n": "jscodeshift -t scripts/transforms/i18n-jscodeshift.cjs src/components --extensions=js,jsx,ts,tsx",
"bump:version": "node scripts/bump-version.mjs",
"build:nmh": "node scripts/build-nmh.mjs",
"build:nmh:release": "node scripts/build-nmh.mjs --release",
"pack:portable": "node scripts/pack-portable.mjs",
"tauri:build": "node scripts/build-nmh.mjs --release && tauri build && node scripts/pack-portable.mjs"
},
"dependencies": {
"@tauri-apps/api": "~2.9.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"clsx": "^2.1.1",
"i18next": "^25.8.12",
"i18next-browser-languagedetector": "^7.0.1",
"lucide-react": "^0.453.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.5.4",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.20",
"i18next-parser": "^9.3.0",
"i18next-scanner": "^3.2.0",
"jsdom": "^26.1.0",
"jscodeshift": "^0.14.0",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.2",
"vitest": "^4.1.5",
"vite": "^6.4.2"
}
}