-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/mapbox-gl": "^2.7.10",
"@types/node": "^18.8.3",
"prettier": "2.8.3",
"typescript": "^4.9.4"
},
"name": "aerofly-missions",
"author": "Frank Boës <[email protected]> (https://3960.org/)",
"license": "MIT",
"description": "The Aerofly Missionsgerät converts simulator flight plan files for Aerofly FS 4, Microsoft Flight Simulator and X-Plane. It also imports Garmin flight plan files.",
"version": "2.19.0",
"exports": "./dist/aerofly-missions.js",
"bin": {
"aerofly-missions": "dist/aerofly-missions.js"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"start": "./dist/aerofly-missions.js",
"test": "node ./dist/test.js",
"prettier": "npx prettier --cache --write .",
"prettier-check": "npx prettier --cache --check .",
"serve": "npx http-server ./dist -o -c-1",
"build": "npm run prettier && tsc --build"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fboes/aerofly-missions.git"
},
"keywords": [
"aerofly-fs4",
"x-plane",
"msfs",
"flight",
"simulator",
"cli",
"flightplan"
],
"bugs": {
"url": "https://github.com/fboes/aerofly-missions/issues"
},
"homepage": "https://fboes.github.io/aerofly-missions/"
}