-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.17 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.17 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
65
66
67
{
"name": "OmegaBot",
"version": "3.9.8",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "npm run build && node dist/bot.js",
"start": "node dist/bot.js",
"register": "npm run build && node dist/registerCommands.js",
"unregister": "node dist/unregisterCommands.js",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --ext .ts --max-warnings=0",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky",
"precheck": "bash ./scripts/precheck.sh",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"db:check": "node --import=ts-node/register/transpile-only scripts/db-check.ts",
"welcome:config": "node --import=ts-node/register/transpile-only scripts/welcome-config.ts",
"notion:check": "node --import=ts-node/register/transpile-only scripts/check-notion.ts",
"db:backup": "bash scripts/backup-db.sh",
"db:seed": "node scripts/seed-dev-db.mjs",
"dev:watch": "npm run build && node --watch dist/bot.js",
"test:e2e": "npm run build && node scripts/e2e-discord.mjs",
"check:discord": "node scripts/check-discord-version.mjs",
"api": "npm run build && node dist/web/server.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@notionhq/client": "^5.19.0",
"better-sqlite3": "^12.6.2",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"jiti": "^2.6.1",
"openai": "^4.0.0",
"pino": "^10.1.0",
"prom-client": "^15.1.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.16"
},
"overrides": {
"ajv": "^6.14.0",
"minimatch": "^3.1.3",
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.6"
},
"undici": "^6.23.0"
}
}