-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "xbox-webapi",
"version": "2.0.0-dev0",
"description": "Xbox Web API client in Node.JS that supports Smartglass commands to control the Xbox",
"main": "src/client.js",
"bin": {
"xbox-webapi": "dist/bin/cli.js"
},
"scripts": {
"build": "rm -rf dist/ && tsc && chmod +x dist/bin/cli.js",
"test": "npm run build && nyc --require ts-node/register --reporter=html --reporter=lcov --reporter=text mocha tests/**.ts",
"start": "npm run build && node dist/bin/cli.js",
"auth": "xbox-auth auth"
},
"author": "UnknownSKL <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^5",
"@types/mocha": "^10",
"@types/node": "^22.5.4",
"chai": "^5.1.1",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"uuid4": "^2.0.3",
"xal-node": "^1.1.0",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unknownskl/xbox-webapi-node.git"
},
"keywords": [
"xbox",
"webapi",
"api"
],
"bugs": {
"url": "https://github.com/unknownskl/xbox-webapi-node/issues"
},
"homepage": "https://github.com/unknownskl/xbox-webapi-node#readme"
}