-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "jinglebot",
"version": "1.0.0",
"description": "Jingle Jam Discord bot built on Cloudflare Workers, providing stats commands and automatic announcements",
"main": "dist/index.js",
"type": "module",
"private": true,
"scripts": {
"build": "tsup",
"dev": "wrangler dev --test-scheduled",
"tunnel": "cloudflared tunnel --url http://localhost:8787",
"publish:production": "wrangler deploy -e production",
"publish:staging": "wrangler deploy -e staging",
"logs:production": "wrangler tail -e production",
"logs:staging": "wrangler tail -e staging",
"prepare": "husky",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JingleJam/jinglebot.git"
},
"author": "Jingle Jam (https://jinglejam.co.uk)",
"contributors": [
"Matt Cowley (https://mattcowley.co.uk)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JingleJam/jinglebot/issues"
},
"homepage": "https://github.com/JingleJam/jinglebot#readme",
"dependencies": {
"discord-api-types": "^0.37.110",
"workers-discord": "^0.0.12"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241202.0",
"dotenv": "^16.4.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"wrangler": "^3.91.0"
}
}