-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.16 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
{
"name": "droidsmith",
"private": true,
"version": "0.9.17",
"type": "module",
"description": "Cross-platform open-source GUI for managing Android devices over ADB",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"bundle:check": "node scripts/check-tauri-resources.mjs",
"ui:smoke": "node scripts/check-rendered-routes.mjs",
"docs:screenshots": "node scripts/check-rendered-routes.mjs --capture-docs",
"release:check": "node scripts/check-release-policy.mjs",
"release:smoke": "node scripts/check-production-bundle.mjs",
"security:audit": "npm audit --audit-level=moderate && node scripts/audit-rust.mjs && npm run security:deny && npm run security:isolation",
"security:audit:rust": "node scripts/audit-rust.mjs",
"security:deny": "cargo deny --locked --manifest-path src-tauri/Cargo.toml --config deny.toml check bans licenses sources",
"security:isolation": "node --test scripts/isolation-policy.test.mjs",
"test:policy": "node --test scripts/release-policy.test.mjs",
"test:target-lifecycle": "node --test scripts/target-lifecycle-policy.test.mjs && node scripts/check-target-lifecycle.mjs",
"packaging:generate": "node scripts/generate-packaging-manifests.mjs",
"packaging:check": "node --test scripts/packaging-manifests.test.mjs",
"provenance:generate": "node scripts/generate-provenance.mjs",
"provenance:check": "node --test scripts/generate-provenance.test.mjs && node scripts/generate-provenance.mjs --check",
"lint": "eslint .",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\" \"scripts/**/*.mjs\" \"isolation/**/*.js\" \"*.json\" \"*.config.ts\"",
"format:write": "prettier --write \"src/**/*.{ts,tsx,css,json}\" \"scripts/**/*.mjs\" \"isolation/**/*.js\" \"*.json\" \"*.config.ts\"",
"typecheck": "tsc --noEmit",
"bindings:generate": "node scripts/check-bindings.mjs --write",
"bindings:check": "node scripts/check-bindings.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"i18next": "^24.2.2",
"qrcode-generator": "^2.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "^24.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "4.1.7",
"autoprefixer": "^10.4.20",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"playwright": "^1.61.1",
"postcss": "^8.5.25",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.4.3",
"vitest": "^4.1.7"
},
"engines": {
"node": "^22.12.0 || >=24.0.0"
}
}