-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.5 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
{
"name": "dualsense-command-center-web",
"version": "0.5.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"dev:mock": "vite --host 127.0.0.1 --mode mock",
"check": "npm run typecheck && npm run test:source-audit && npm run test:button-map && npm run test:snapshot-map && npm run test:haptics-graph && npm run build && npm run test:release-size && npm run test:visual-smoke",
"build": "vite build",
"check:perf": "node ../tools/check-perf.mjs",
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
"preview": "vite preview --host 127.0.0.1",
"test:button-map": "node --experimental-strip-types scripts/button-mapping-p95.mjs",
"test:snapshot-map": "node --experimental-strip-types scripts/snapshot-mapping.mjs",
"test:haptics-graph": "node --experimental-strip-types scripts/haptics-graph-parity.mjs",
"test:curve-drag": "node scripts/curve-drag-budget.mjs",
"test:release-size": "node scripts/release-web-budget.mjs",
"test:source-audit": "node scripts/source-audit.mjs",
"test:visual-smoke": "node scripts/visual-smoke.mjs"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@lucide/svelte": "^1.27.0",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tsconfig/svelte": "^5.0.4",
"playwright": "^1.61.1",
"svelte": "^5.56.6",
"svelte-check": "^4.7.3",
"typescript": "^6.0.3",
"vite": "^8.1.5"
}
}