-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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": "gitbot-http",
"type": "module",
"version": "1.0.0",
"description": "The interaction handler for GitBot, based on Cloudflare Workers ☁️",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "wrangler dev src/server.js",
"ngrok": "ngrok http 6969",
"publish": "wrangler publish",
"register": "node src/register.js",
"fix": "eslint --fix **/*.js",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statch/gitbot-http.git"
},
"keywords": [
"bot",
"discord",
"slash-commands",
"discord-bot",
"nodejs",
"cloudflare-worker"
],
"author": "statch",
"license": "MIT",
"bugs": {
"url": "https://github.com/statch/gitbot-http/issues"
},
"homepage": "https://github.com/statch/gitbot-http#readme",
"dependencies": {
"discord-interactions": "^3.0.0",
"itty-router": "^3.0.11"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"ngrok": "^4.3.3",
"node-fetch": "^3.3.0",
"prettier": "^2.8.2",
"wrangler": "^2.7.1"
}
}