-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "xbox-xcloud-player",
"version": "1.0.0-beta6",
"description": "",
"main": "dist/library.js",
"scripts": {
"start": "npm run build && node dist/bin/server.js",
"build": "rimraf dist && tsc && webpack",
"watch": "nodemon",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "jest --coverage",
"auth": "rimraf .xbox.tokens.json && xbox-auth auth"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unknownskl/xbox-xcloud-player.git"
},
"author": "Jim Kroon <UnknownSKL>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unknownskl/xbox-xcloud-player/issues"
},
"homepage": "https://github.com/unknownskl/xbox-xcloud-player#readme",
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.4.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.24.1",
"express": "^4.17.1",
"ip-address": "^9.0.5",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"xal-node": "^1.0.2"
},
"dependencies": {
"uuid": "^9.0.1"
}
}