-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "llm-assistant-discord-bot",
"version": "2.0.0",
"description": "LLM Assistant Discord Bot",
"engines": {
"node": "^20.0.0",
"pnpm": "^9.0.0"
},
"packageManager": "pnpm@9.0.6",
"scripts": {
"prepare": "husky",
"start": "tsx watch --clear-screen=false bin/index.ts",
"prebuild": "rimraf dist",
"build": "rimraf dist && tsup",
"pretest": "rimraf coverage",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"test:CI": "pnpm run test && pnpm run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"lint:fix:unsafe": "biome check --apply-unsafe .",
"format": "biome format --write .",
"ci": "biome ci .",
"deploy:command": "tsx scripts/deploy-guild-commands.ts",
"delete:command": "tsx scripts/delete-guild-commands.ts",
"delete:command-global": "tsx scripts/delete-global-commands.ts"
},
"dependencies": {
"@discordjs/rest": "2.0.0",
"date-fns": "^3.6.0",
"discord-api-types": "^0.37.82",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"openai": "^4.38.5",
"oxide.ts": "^1.1.0",
"pdf-text-reader": "^4.0.1",
"winston": "^3.13.0",
"wretch": "^2.8.1",
"zod": "^3.23.4"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.2",
"esbuild": "^0.20.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"msw": "^2.2.14",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"vitest": "^1.5.2",
"vitest-mock-extended": "^1.3.1"
}
}