-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 803 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
{
"name": "flight-obstacles",
"version": "1.0.0",
"description": "Flight obstacle map",
"author": "Johan Levin <johan13@gmail.com>",
"homepage": "https://map.joleco.se/",
"license": "ISC",
"repository": {
"type": "git",
"url": "http://github.com/johan13/flight-obstacles"
},
"type": "module",
"scripts": {
"download": "node download.ts",
"prettier": "prettier --write *.ts",
"start": "serve public"
},
"dependencies": {
"leaflet": "^1.9.4"
},
"devDependencies": {
"@fast-csv/parse": "^5.0.5",
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.10.1",
"adm-zip": "^0.5.16",
"prettier": "^3.7.3",
"serve": "^14.2.5",
"typescript": "^5.9.3"
}
}