-
-
Notifications
You must be signed in to change notification settings - Fork 555
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "DashBeam",
"private": true,
"version": "0.6.2",
"type": "module",
"scripts": {
"dev": "vite --config vite.config.ts --mode tauri",
"dev:web": "vite --config vite.config.ts --mode web",
"predev:web": "test -f frontend/src/wasm/pkg/wasm_bridge.js || ./scripts/build-wasm-bridge.sh",
"build": "tsc -b && vite build",
"build:web": "pnpm build:wasm && pnpm check:wasm && tsc -b && vite build --config vite.config.ts --mode web",
"build:web:vercel": "WEB_BASE=/ pnpm build:wasm && pnpm check:wasm && tsc -b && WEB_BASE=/ vite build --config vite.config.ts --mode web",
"deploy:web:vercel": "./scripts/deploy-web-vercel.sh",
"build:wasm": "node ./scripts/build-wasm-bridge.js --release",
"check:wasm": "tsc -p tsconfig.wasm-parity.json",
"preview": "vite preview --config vite.config.ts",
"preview:web": "vite preview --config vite.config.ts --mode web",
"tauri": "tauri",
"android:dev": "tauri android dev",
"android:build": "tauri android build",
"release": "node ./scripts/release.js",
"generate-release-notes": "node ./scripts/generate-release-notes.js --print",
"sync-version": "node ./scripts/sync-version.js",
"validate-version": "node ./scripts/validate-version.js",
"test:lib": "node ./scripts/run-lib-tests.js",
"lint": "biome lint && tsc --noEmit --skipLibCheck",
"lint:fix": "biome lint --fix",
"format": "biome format --write && cargo fmt --manifest-path engine/Cargo.toml && cargo fmt --manifest-path src-tauri/Cargo.toml",
"format:check": "biome format && cargo fmt --manifest-path engine/Cargo.toml -- --check && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check",
"android:build:release": "node ./scripts/android-release-build.js",
"android:apply-gradle-patches": "node ./scripts/apply-android-release-gradle-patches.js",
"prepare": "husky"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@base-ui/react": "^1.1.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@tanstack/react-query": "^5.90.21",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-deep-link": "2.4.6",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.20",
"framer-motion": "^12.23.24",
"lottie-react": "^2.4.1",
"lucide-react": "^0.292.0",
"motion": "^12.31.1",
"radix-ui": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-qr-code": "^2.2.0",
"react-router-dom": "^7.12.0",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/cli": "2.10.1",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^6.0.1",
"husky": "^9.1.7",
"postcss": "^8.0.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.0.0",
"vite": "^8.0.2"
}
}