-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "unicorn",
"version": "0.1.1",
"description": "A type-safe Discord bot framework with modular Sparks, composable Guards, and Zod-validated configuration — built on Discord.js and Bun.",
"author": "Brian L. <brian@uniquepixels.xyz> (http://uniquepixels.xyz)",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/uniquepixels/unicorn.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"start": "bun ./src/index.ts",
"qa": "bun scripts/qa.ts",
"qa:format": "biome format --write",
"qa:lint": "bun scripts/biome-lint.ts check",
"qa:tsc": "tsc --noEmit --skipLibCheck",
"qa:test": "bun test && bun scripts/check-coverage.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/types": "^20.4.3",
"@types/bun": "1.3.10",
"pino-pretty": "^13.1.3",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome"
],
"engines": {
"bun": ">=1.3.0"
},
"overrides": {
"undici": "^7.22.0"
},
"dependencies": {
"@sentry/bun": "^10.42.0",
"cron": "^4.4.0",
"discord.js": "^14.25.1",
"pino": "^10.3.1",
"serialize-error": "^13.0.1",
"zod": "^4.3.6"
}
}