-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "halo-infinite-api",
"version": "9.2.0",
"description": "An NPM package for accessing the official Halo Infinite API.",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./token-persisters": "./dist/core/token-persisters/index.js"
},
"scripts": {
"prepack": "tsc --project tsconfig.app.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GravlLift/halo-infinite-api.git"
},
"keywords": [
"halo",
"infinite",
"api"
],
"author": "GravlLift",
"license": "ISC",
"bugs": {
"url": "https://github.com/GravlLift/halo-infinite-api/issues"
},
"homepage": "https://github.com/GravlLift/halo-infinite-api#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/luxon": "^3.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"yargs": "^17.7.1"
},
"dependencies": {
"@azure/msal-node": "^2.2.0",
"axios": "^1.6.2",
"cockatiel": "^3.1.2",
"expiry-map": "^2.0.0",
"luxon": "^3.3.0",
"pkce-challenge": "^3.1.0",
"simple-oauth2": "^5.0.0"
},
"publishConfig": {
"@GravlLift:registry": "https://npm.pkg.github.com"
}
}