-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "webgfa",
"version": "3.2.4",
"description": "This is a game site made to play games! If you want to add any games, just use to form in the /gameselect code and submit. The website linked to this github is https://webgfa.com with other links being https://webgfa.org and https://webgfa.online",
"main": "dist/server.js",
"type": "module",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"postinstall": "node packages/build.js",
"prestart": "node packages/build.js --update",
"config": "node dist/config.js",
"dev": "tsx watch src/server.ts --dev",
"migrate": "tsx src/migrate-to-sqlite.ts"
},
"author": "Zzza38",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.3.0",
"@fastify/static": "^8.3.0",
"@genkit-ai/googleai": "^1.0.5",
"axios": "^1.12.0",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"fastify": "^5.6.1",
"genkit": "^1.0.5",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^3.0.3",
"openai": "^6.9.1",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.5",
"@types/pdf-parse": "^1.1.5",
"pino-pretty": "^13.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}