-
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.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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": "glyphbots-discord-bot",
"version": "2.3.0",
"description": "An AI-enabled Discord bot for the GlyphBots community featuring storytelling, arena battles, and playground interactions.",
"author": "Ryan Ghods <ryan@ryanio.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "yarn build",
"build": "npx tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"commands:deploy": "ts-node src/commands/deploy.ts",
"prompts:generate": "ts-node scripts/generate-image-prompts.ts",
"test": "jest",
"test:ci": "jest --ci --coverage --watchAll=false --maxWorkers=50%",
"test:coverage": "jest --coverage --maxWorkers=50%",
"format": "ultracite fix --unsafe && npx tsc --noEmit -p tsconfig.build.json",
"lint": "ultracite lint && npx tsc --noEmit -p tsconfig.build.json"
},
"dependencies": {
"@google/genai": "^1.34.0",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@types/jest": "^30.0.0",
"@types/node": "^18.0.0",
"jest": "^30.1.1",
"jest-mock-extended": "^4.0.0",
"lint-staged": "^16.1.5",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"ultracite": "6.3.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"yarn dlx ultracite format"
]
}
}