-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 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
{
"name": "pdwn",
"private": true,
"version": "0.1.0",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"fmt": "biome check --write .",
"fmt:check": "biome ci .",
"i18n:check": "bun run scripts/check-i18n.ts",
"dataset:sync": "bun run scripts/sync-integration-dataset.ts",
"test:integration": "cargo test --manifest-path src-tauri/Cargo.toml integration_dataset_detection_consistency -- --nocapture",
"test:integration:refresh": "bun run dataset:sync && bun run test:integration",
"check:rust": "cargo fmt --manifest-path src-tauri/Cargo.toml --check && cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings && cargo test --manifest-path src-tauri/Cargo.toml",
"check": "bun run typecheck && bun run fmt:check && bun run i18n:check && bun run check:rust",
"prepare": "lefthook install || true"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-opener": "^2",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@biomejs/biome": "^1.9.4",
"lefthook": "^1.6.12",
"vite": "^6.4.1",
"typescript": "~5.6.2"
},
"overrides": {
"rollup": "^4.59.0"
}
}