-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "samebot-zero",
"version": "1.0.0",
"description": "Modern TypeScript rewrite of Samebot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format esm",
"start": "node dist/index.js",
"lint": "eslint \"src/**/*.ts\"",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
"dependencies": {
"@google/genai": "^1.30.0",
"@octokit/rest": "^22.0.1",
"@supabase/supabase-js": "^2.84.0",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"emittery": "^1.2.0",
"fuse.js": "^7.1.0",
"gif-encoder-2": "^1.0.5",
"luxon": "^3.7.2",
"neverthrow": "^8.2.0",
"openai": "^6.9.1",
"pino": "^10.1.0",
"sharp": "^0.34.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/luxon": "^3.7.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"better-sqlite3": "^11.10.0",
"eslint": "^9.39.1",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"better-sqlite3",
"esbuild"
]
}
}