-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.48 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
{
"name": "uwp",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "24.16.0",
"npm": "11.12.1"
},
"scripts": {
"build:wasm": "wasm-pack build crates/planet-render --target web --out-dir ../../pkg --release",
"build:wasm:dev": "wasm-pack build crates/planet-render --target web --out-dir ../../pkg --dev",
"build:wasm:profiling": "wasm-pack build crates/planet-render --target web --out-dir ../../pkg --profiling",
"dev": "npm run build:wasm:profiling && vite",
"build": "npm run build:wasm && vite build",
"preview": "vite preview",
"ip:check": "node scripts/check-ip-guardrails.mjs",
"architecture:check": "node scripts/check-architecture.mjs",
"check:docs": "node scripts/check-doc-links.mjs",
"diagrams": "node scripts/render-diagrams.mjs",
"check:diagrams": "node scripts/check-diagrams.mjs",
"test": "vitest run",
"test:e2e": "playwright test --grep-invert @visual",
"test:visual": "playwright test --grep @visual",
"test:watch": "vitest",
"typecheck": "npm run build:wasm:dev && tsc --noEmit",
"rust:fmt": "cargo fmt --check",
"rust:check": "cargo check --workspace",
"rust:check:wasm": "cargo check --workspace --target wasm32-unknown-unknown",
"rust:test": "cargo test --workspace",
"rust:clippy": "cargo clippy --workspace --all-targets -- -D warnings",
"rust:clippy:wasm": "cargo clippy --workspace --target wasm32-unknown-unknown -- -D warnings",
"verify:fast": "npm run ip:check && npm run architecture:check && npm run check:docs && npm test && npm run rust:fmt && npm run rust:check",
"verify": "npm run ip:check && npm run architecture:check && npm run check:docs && npm run check:diagrams && npm test && npm run typecheck && npm audit && npm run rust:fmt && npm run rust:check && npm run rust:check:wasm && npm run rust:test && npm run rust:clippy && npm run rust:clippy:wasm && npm run build && npm run test:e2e",
"deploy": "npm run build && wrangler deploy",
"prepare": "husky"
},
"dependencies": {
"@preact/signals": "^2",
"preact": "^10"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@preact/preset-vite": "^2",
"@types/node": "^25.9.1",
"@types/pngjs": "^6.0.5",
"husky": "^9.1.7",
"pngjs": "^7.0.0",
"typescript": "^5",
"vite": "^6",
"vite-plugin-pwa": "^0.21",
"vite-plugin-top-level-await": "^1",
"vite-plugin-wasm": "^3",
"vitest": "^4.1.7"
},
"overrides": {
"uuid": "^11.1.1"
}
}