-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 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
{
"name": "rabot",
"version": "1.0.0",
"description": "The official RetroAchievements Discord bot",
"module": "index.ts",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/RetroAchievements/RABot-Next.git"
},
"keywords": [
"discord",
"bot",
"rabot",
"retroachievements",
"achievements"
],
"author": "RetroAchievements",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/RetroAchievements/RABot-Next/issues"
},
"homepage": "https://github.com/RetroAchievements/RABot-Next#readme",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun run src/index.ts",
"deploy-commands": "bun run src/deploy-commands.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/database/migrate.ts",
"db:seed": "bun run src/database/seed-teams.ts",
"tsc": "tsgo --noEmit",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"test": "vitest run",
"test:watch": "vitest",
"verify": "run-p format lint:fix tsc test",
"ci": "bun run format:check && bun run lint && bun run tsc && bun run test",
"postinstall": "git config core.hooksPath .hooks && chmod +x .hooks/*"
},
"dependencies": {
"@libsql/client": "^0.17.0",
"@retroachievements/api": "^2.6.0",
"discord.js": "^14.21.0",
"drizzle-orm": "0.44.3",
"figlet": "^1.8.2",
"youtube-search": "^1.1.6"
},
"devDependencies": {
"@nkzw/oxlint-config": "^1.0.1",
"@types/bun": "latest",
"@types/figlet": "^1.7.0",
"@typescript/native-preview": "^7.0.0-dev.20260228.1",
"@vitest/coverage-v8": "4.0.18",
"drizzle-kit": "0.31.4",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"vitest": "^4.0.18"
}
}