forked from mcvardo/PackPath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·31 lines (31 loc) · 814 Bytes
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
{
"name": "packpath",
"version": "1.0.0",
"description": "AI backpacking route planner — real OSM geometry, deterministic scoring, Claude narration.",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "vite",
"build": "vite build",
"pipeline": "node test-narration-real.js",
"test": "node --experimental-vm-modules node_modules/.bin/vitest run",
"fetch": "node fetch-overpass.js",
"enrich": "node enrich-elevation.js",
"loops": "node find-loops.js"
},
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.22.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.19",
"vitest": "4.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}