-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "pelorus-nav",
"private": true,
"version": "0.27.0",
"description": "Pelorus Nav — open-source web-based marine chartplotter",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && rm -f dist/*.pmtiles dist/*.coverage.geojson dist/*.search.json && ([ \"$CAPACITOR\" = \"1\" ] || bun run docs:build)",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test --project=chromium",
"e2e:all": "playwright test",
"e2e:chart-coverage": "playwright test --project=chart-coverage",
"e2e:ui": "playwright test --ui",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit && tsc -p tsconfig.worker.json --noEmit",
"check": "bun run typecheck && bun run lint && bun run test",
"docs:dev": "vitepress dev docs-site",
"docs:build": "vitepress build docs-site",
"docs:preview": "vitepress preview docs-site",
"docs:shots": "bun tools/docs-shots.ts",
"admin": "cd tools/admin && uv run pelorus-admin",
"sprites": "bun tools/sprites/build-s52-sprites.ts",
"sprites:catalog": "uv run --with reportlab --with svglib python tools/sprites/render-sprite-catalog.py",
"tides:build": "bun tools/tides/build-bundle.ts",
"tiles": "tools/build-tiles.sh --build --region boston-test",
"tiles:build": "tools/build-tiles.sh --build",
"tiles:build:fresh": "tools/build-tiles.sh --download --build",
"tiles:check": "tools/build-tiles.sh --check",
"tiles:upload": "tools/build-tiles.sh --upload",
"tiles:check-assets": "bun tools/check-remote-assets.ts",
"tiles:update": "tools/build-tiles.sh --update",
"deploy": "bun run build && wrangler deploy",
"cap:sync": "CAPACITOR=1 bun run build && bunx cap sync android",
"cap:run": "CAPACITOR=1 bun run build && bunx cap sync android && bunx cap run android",
"cap:build": "CAPACITOR=1 bun run build && bunx cap sync android && cd android && ./gradlew clean assembleRelease",
"cap:build:aab": "CAPACITOR=1 bun run build && bunx cap sync android && cd android && ./gradlew clean bundleRelease",
"cap:build:debug": "CAPACITOR=1 bun run build && bunx cap sync android && cd android && ./gradlew clean assembleDebug",
"ios:version": "bun tools/sync-ios-version.ts",
"cap:sync:ios": "bun run ios:version && CAPACITOR=1 bun run build && bunx cap sync ios",
"cap:run:ios": "bun run ios:version && CAPACITOR=1 bun run build && bunx cap sync ios && bunx cap run ios",
"cap:build:ios": "bun run ios:version && CAPACITOR=1 bun run build && bunx cap sync ios && cd ios/App && xcodebuild -project App.xcodeproj -scheme App -configuration Release -archivePath build/App.xcarchive archive",
"ios:beta": "tools/ios-beta.sh"
},
"license": "MIT",
"dependencies": {
"@capacitor-community/bluetooth-le": "^8.2.0",
"@capacitor/app": "^8.0.1",
"@capacitor/core": "^8.2.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/share": "^8.0.1",
"@fontsource/roboto-condensed": "^5.3.0",
"@maplibre/maplibre-gl-style-spec": "^25.0.0",
"@neaps/tide-predictor": "^0.9.0",
"@protomaps/basemaps": "^5.7.2",
"magvar": "^2.0.1",
"maplibre-gl": "^6.0.0",
"pmtiles": "^4.4.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1006.0",
"@aws-sdk/lib-storage": "^3.1006.0",
"@biomejs/biome": "2.4.8",
"@capacitor/android": "^8.2.0",
"@capacitor/cli": "^8.2.0",
"@capacitor/ios": "8.2.0",
"@cloudflare/workers-types": "^4.20260305.1",
"@playwright/test": "^1.58.2",
"@types/pngjs": "^6.0.5",
"@types/ws": "7.4.7",
"@vitest/coverage-v8": "^4.0.18",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.0.2",
"pngjs": "^7.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18",
"wrangler": "^4.70.0",
"ws": "8.18.0"
},
"packageManager": "bun@1.3.12"
}