-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 878 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
{
"name": "token-invalidator-bot",
"version": "1.0.0",
"description": "A HTTP interactions Discord bot to easily invalidate tokens",
"main": "dist/index.js",
"type": "module",
"author": "Sammy#1001",
"license": "MIT",
"private": false,
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc",
"dev": "tsc && wrangler dev dist/index.js",
"ngrok": "tsc && ngrok http 8787",
"ngrokl": "ngrok http 3000",
"register": "tsc && node dist/register.js",
"unregister": "tsc && node dist/unregister.js",
"publish": "tsc && wrangler publish"
},
"dependencies": {
"discord-api-types": "^0.33.5",
"dishttp": "^2.0.0-alpha.35"
},
"devDependencies": {
"@types/node": "^17.0.42",
"dotenv": "^16.0.1",
"ngrok": "^4.3.1",
"node-fetch": "^3.2.6",
"typescript": "^4.7.3",
"wrangler": "^2.0.9"
}
}