-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.29 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
{
"name": "fightcade-gamepad-navigation",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test --project=chromium",
"test:ui": "npx playwright test --ui --project=chromium",
"test:watch": "PWTEST_WATCH=1 npx playwright test --project=chromium",
"build": "esbuild --define:FGN_DEBUG=false --bundle src/inject.ts --outfile=out/inject.js",
"build:test": "esbuild --define:FGN_DEBUG=true --bundle src/inject.ts --outfile=out/inject.js",
"type-check": "tsc --noEmit --p tsconfig.json | loose-ts-check",
"watch": "esbuild --watch --define:FGN_DEBUG=true --bundle src=src/inject.ts --outfile=out/inject.js",
"live-reload": "alive-server --port=5001 --no-browser --host=0.0.0.0 --quiet --watch='out, *.html' .",
"start": "concurrently 'npm run watch' 'npm run live-reload'",
"test:start-server": "alive-server --port=5002 --no-browser --host=127.0.0.1 --quiet --watch='noop' ."
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"ally.js": "^1.4.1",
"concurrently": "^8.2.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.5",
"alive-server": "^1.3.0",
"esbuild": "0.19.10",
"loose-ts-check": "^2.0.0"
}
}