-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "guilty-spark",
"version": "1.0.0",
"author": "David Houweling",
"description": "Discord app to pull Halo stats from Halo Waypoint. Works in conjunction with NeatQueue.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidhouweling/guilty-spark.git"
},
"bugs": {
"url": "https://github.com/davidhouweling/guilty-spark/issues"
},
"homepage": "https://github.com/davidhouweling/guilty-spark#readme",
"main": "src/app.mts",
"scripts": {
"postinstall": "patch-package",
"start": "wrangler dev",
"ngrok": "ngrok http 8787",
"register": "npx tsx --env-file=.dev.vars src/deploy-commands.mts",
"test": "vitest",
"test:update-snapshot": "vitest -u",
"test:coverage": "vitest --coverage.enabled true",
"format": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"typecheck": "tsc --noEmit",
"build:generate-types": "wrangler types --experimental-include-runtime",
"build": "tsc --project tsconfig.build.json",
"publish": "wrangler deploy"
},
"dependencies": {
"@xboxreplay/xboxlive-auth": "^4.1.0",
"date-fns": "^4.1.0",
"discord-api-types": "^0.37.115",
"discord-interactions": "^4.1.0",
"halo-infinite-api": "^9.2.0",
"itty-router": "^5.0.18",
"tinyduration": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tsconfig/node22": "^22.0.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "22.10.5",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^2.1.8",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"ngrok": "^5.0.0-beta.2",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.6",
"vitest-mock-extended": "^2.0.2",
"wrangler": "^3.101.0"
}
}