-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 833 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
32
{
"name": "pilotlog",
"version": "1.0.0",
"description": "Standalone GA pilot logbook (CLI + read API).",
"type": "module",
"bin": {
"pilotlog": "./bin/pilotlog.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cli": "tsc -p pilotlog-cli/tsconfig.build.json",
"build:contract-bundle": "node scripts/bundle-contract.mjs",
"build:midnight-sdk": "node scripts/bundle-midnight-sdk.mjs",
"cli": "node ./bin/pilotlog.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@midnames/sdk": "^2.0.0",
"buffer": "^6.0.3",
"express": "^5.2.1",
"pg": "^8.21.0",
"puppeteer": "^24.40.0",
"ws": "^8.20.1"
},
"devDependencies": {
"@types/node": "^25.3.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}