-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 853 Bytes
/
package.json
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
{
"name": "eatc-airlines",
"version": "0.0.0-dev",
"description": "Command-line tool and API for retrieving air traffic data and generating airline configurations for EndlessATC custom airspaces.",
"keywords": [
"endlessatc",
"eatc",
"atc",
"airlines",
"traffic",
"airspace"
],
"repository": {
"type": "git",
"url": "https://github.com/zefir-git/eatc-airlines"
},
"license": "GPL-3.0",
"author": "Zefir Kirilov",
"type": "module",
"main": "dist/api.js",
"bin": "dist/cli.js",
"exports": {
".": "./dist/api.js"
},
"types": "./dist/api.d.ts",
"files": [
"dist/*.js",
"dist/api.d.ts",
"data/"
],
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/node": "^22.10.6",
"typescript": "^5.7.3"
},
"dependencies": {
"commander": "^13.0.0"
}
}