-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "gamer-bridge",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && mkdir -p dist/prompts && cp -r src/prompts/* dist/prompts/",
"start": "node dist/index.js",
"dev": "npm run build && node dist/index.js",
"db:push": "prisma db push",
"db:edit": "npx prisma studio",
"generate-token": "npx tsx scripts/generateSteamToken.ts",
"test": "vitest",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"axios": "^1.6.7",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.3",
"grammy": "^1.39.3",
"openai": "^6.16.0",
"steam-user": "^5.3.0",
"ts3-nodejs-library": "^3.5.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.9",
"@types/steam-user": "^5.1.1",
"@vitest/ui": "^4.0.17",
"nodemon": "^3.1.11",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}