-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
33
{
"name": "simlink",
"version": "1.0.0",
"bin": "bin/index.js",
"scripts": {
"postinstall": "node scripts/install.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.mjs",
"generate-windows": "node scripts/build.mjs && pkg --compress Brotli -t latest-win-x64 -o bin/simlink.exe ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@flybywiresim/msfs-nodejs": "github:liz3/msfs-nodejs",
"cors": "^2.8.5",
"express": "^4.21.2",
"node-hide-console-window": "^2.2.0",
"systray2": "^2.1.4"
},
"devDependencies": {
"esbuild": "^0.24.2",
"pkg": "^5.8.1",
"@flybywiresim/fragmenter": "^0.8.0"
},
"pkg": {
"assets": [
"./node_modules/systray2/traybin/*.exe",
"assets/icon.ico"
]
}
}