-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 904 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 904 Bytes
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
{
"name": "course-channel-bot",
"version": "0.1.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dump": "bun src/index.ts",
"dump:metadata": "bun src/dumpDiscordChannels.ts",
"apply": "bun src/applyPlanCli.ts",
"review:build": "bun src/buildReviewSite.ts",
"review:serve": "bun src/serveReviewSite.ts",
"sections:low-confidence": "bun src/pullLowConfidenceSections.ts",
"plan:summer": "bun src/buildSummerPlan.ts",
"sync-permissions": "bun src/syncPermissionsCli.ts",
"test": "vitest run",
"lint": "biome check .",
"format": "biome format --write ."
},
"dependencies": {
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"zod": "^4.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/bun": "^1.3.3",
"@types/node": "^22.15.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}