-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.8 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.8 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
{
"name": "neoradar-cli",
"version": "1.1.1",
"description": "CLI Tool for neoradar for packaging and releasing sector files",
"main": "dist/index.js",
"bin": {
"neoradar-cli": "dist/index.js"
},
"preferGlobal": true,
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"prebuild": "node scripts/get-version.js",
"start": "node dist/index.js",
"build": "tsc",
"test": "tsc -p tsconfig.test.json && node --test dist-test/test/build-airways.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoradar-project/cli.git"
},
"keywords": [],
"author": "NeoRadar Project",
"license": "GNU General Public License v3.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/neoradar-project/cli/issues"
},
"files": [
"dist/",
"src/",
"scripts/",
"tsconfig.json",
"package.json"
],
"homepage": "https://github.com/neoradar-project/cli#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/figlet": "^1.7.0",
"@types/node": "^24.12.2",
"@types/yauzl": "^2.10.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1037.0",
"@turf/turf": "^7.3.5",
"ajv": "^8.20.0",
"better-sqlite3": "^12.9.0",
"commander": "^14.0.3",
"coordinate-parser": "^1.0.7",
"dms-conversion": "^3.1.4",
"figlet": "^1.11.0",
"free-tex-packer-core": "^0.3.5",
"ky": "^1.14.3",
"mustache": "^4.2.0",
"ora": "^8.2.0",
"sector-file-tools": "github:neoradar-project/sector-file-tools#v1.2.7",
"typescript": "^5.9.3",
"winston": "^3.19.0",
"yauzl": "^3.3.0",
"zip-a-folder": "^3.1.9"
},
"overrides": {
"mustache": "^4.2.0"
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3"]
}
}