-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 887 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 887 Bytes
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
{
"name": "mangobot",
"module": "src/index.ts",
"type": "module",
"license": "UNLICENSED",
"scripts": {
"start": "bun run src/index.ts",
"typecheck": "tsc --project ./tsconfig.json",
"migrate": "prisma migrate deploy",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "22.14.1",
"@types/web": "0.0.202",
"bun-types": "latest",
"prettier": "^3.5.3",
"prisma": "^5.22.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "5.4.2",
"@types/node-schedule": "^2.1.7",
"discord.js": "^14.18.0",
"node-schedule": "^2.1.1",
"puppeteer": "22.15.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
}
}