-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 942 Bytes
/
package.json
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": "grolf",
"module": "index.ts",
"type": "module",
"version": "0.3.1",
"description": "A simple, fast, and lightweight arcade helper.",
"main": "index.ts",
"scripts": {
"dev": "bun run --watch index.ts",
"build": "bun build --compile --minify --sourcemap ./index.ts --outfile ./dist/grolf",
"ngrok": "ngrok http 3000 --domain=casual-renewing-reptile.ngrok-free.app"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "^5.17.0",
"async": "^3.2.5",
"bottleneck": "^2.19.5",
"colors": "^1.4.0",
"slack-edge": "^0.13.3",
"typescript-queue": "^1.0.2",
"yaml": "^2.4.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}