-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 KB
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
{
"name": "@beequeue/dota-matches-api",
"type": "module",
"version": "0.0.0",
"author": "BeeeQueue <adam@haglund.dev>",
"license": "CC-BY-SA-3.0-US",
"private": true,
"packageManager": "pnpm@10.31.0",
"engines": {
"node": "^25"
},
"simple-git-hooks": {
"pre-commit": "node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,json,json5,yaml,yml,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"dev": "wrangler dev",
"dev:migrate": "wrangler d1 migrations apply --local dpc",
"build": "tsdown",
"lint": "eslint src",
"test": "vitest",
"test:e2e": "vitest -c vitest.e2e.config.ts",
"typecheck": "tsc --noEmit --project tsconfig.json",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "7.7.2",
"@cloudflare/vitest-pool-workers": "0.12.20",
"@cloudflare/workers-types": "4.20260307.1",
"@e18e/eslint-plugin": "0.2.0",
"@leeoniya/ufuzzy": "1.0.19",
"@total-typescript/ts-reset": "0.6.1",
"@tsconfig/node-ts": "23.6.4",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "25.3.5",
"db0": "0.3.4",
"discord-api-types": "0.38.41",
"discord-interactions": "4.4.0",
"es-toolkit": "1.45.1",
"eslint": "10.0.3",
"hono": "4.12.14",
"kysely": "0.28.14",
"mentoss": "0.13.0",
"milli": "4.0.0",
"miniflare": "4.20260301.1",
"nano-staged": "0.9.0",
"nanoid": "5.1.6",
"p-queue": "9.1.0",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"temporal-polyfill": "0.3.0",
"tsdown": "0.21.0",
"typescript": "6.0.2",
"ultrahtml": "1.6.0",
"vitest": "3.2.4",
"wrangler": "4.71.0",
"xior": "0.8.3"
}
}