-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (39 loc) · 1.58 KB
/
package.json
File metadata and controls
44 lines (39 loc) · 1.58 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
{
"name": "map-project",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"happ",
"host"
],
"scripts": {
"start": "npm run build:happ && npm run start:host",
"start:info": "npm run build:happ && RUST_LOG=host=info npm run start:host",
"start:debug": "npm run build:happ && RUST_LOG=host=debug npm run start:host",
"start:host": "npm run start -w host",
"build": "npm run build:happ && npm run build:host",
"build:host": "npm run build -w host",
"build:happ": "npm run build:happ -w happ",
"check": "npm run check -w host && npm run check -w happ",
"test": "npm run sweetest",
"test:unit": "npm run test:unit -w host && npm run test:unit:no-run -w happ",
"sweetest": "RUST_LOG=${RUST_LOG:-warn} WASM_LOG=${WASM_LOG:-warn} npm run build:happ && npm run sweet:test",
"sweetest:nocapture": "RUST_LOG=${RUST_LOG:-warn} WASM_LOG=${WASM_LOG:-warn} npm run build:happ && npm run sweet:test:nocapture",
"sweet:test": "cargo test --manifest-path tests/sweetests/Cargo.toml",
"sweet:test:nocapture": "cargo test --manifest-path tests/sweetests/Cargo.toml -- --nocapture",
"clean": "npm run clean:rust:deep && npm run clean:ui",
"clean:rust": "npm run clean:rust -w host && npm run clean:rust -w happ",
"clean:rust:deep": "npm run clean:rust:deep -w host && npm run clean:rust:deep -w happ",
"clean:ui": "npm run clean:ui -w host"
},
"devDependencies": {
"autoprefixer": "^10.4",
"concurrently": "^9",
"rimraf": "^6"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=10.9.0"
}
}