forked from luigimannoni/stadia-controller-flasher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "stadia-controller-flasher",
"version": "0.1.0",
"description": "Google Stadia Controller flasher utility",
"main": "index.js",
"author": "Luigi Mannoni <[email protected]>",
"license": "MIT",
"scripts": {
"serve:reference": "ssl-serve --ssl ./reference/stadia.google.com/controller",
"serve": "ssl-serve --ssl ./src",
"pkg": "rm -rf dist && mkdir -p dist && pkg --compress GZip ."
},
"devDependencies": {
"finalhandler": "^1.2.0",
"pkg": "^5.8.0",
"serve-static": "^1.15.0",
"eslint": "^8.32.0",
"eslint-config-google": "^0.14.0",
"ssl-serve": "^6.5.8"
},
"engines": {
"npm": ">=8.15.0",
"node": ">=v16.17.0"
},
"bin": "src/bin.js",
"pkg": {
"assets": [
"src/assets/**.svg",
"src/data/*.bin",
"src/app.css",
"src/index.html"
],
"scripts": [
"src/controller/*.js",
"src/app.js"
],
"targets": [
"node16-win-x64",
"node16-linux-x64",
"node16-macos"
],
"outputPath": "dist"
}
}