-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "xal-node",
"version": "1.0.2",
"description": "XAL implementation in Typescript. Used for authenticating to services like Xbox.",
"main": "dist/lib.js",
"scripts": {
"build": "rm -rf dist/ && tsc && chmod +x dist/bin/auth.js",
"test": "node tests/index.js",
"auth": "tsc && node dist/bin/auth.js",
"run": "tsc && node dist/bin/auth.js"
},
"bin": {
"xbox-auth": "./dist/bin/auth.js"
},
"author": "UnknownSKL <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unknownskl/xal-node.git"
},
"keywords": [
"xbox",
"xal"
],
"bugs": {
"url": "https://github.com/unknownskl/xal-node/issues"
},
"homepage": "https://github.com/unknownskl/xal-node#readme",
"dependencies": {
"commander": "^12.0.0",
"jose": "^5.1.0",
"uuid-1345": "^1.0.2"
}
}