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