generated from MattIPv4/template
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
49
50
{
"name": "dns-over-discord",
"version": "1.0.0",
"description": "A 1.1.1.1 DNS resolver built for Discord",
"main": "dist/worker.js",
"type": "module",
"private": true,
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development wrangler dev",
"tunnel": "cloudflared tunnel --url http://localhost:8787",
"publish:production": "NODE_ENV=production wrangler deploy -e production",
"publish:staging": "NODE_ENV=staging wrangler deploy -e staging",
"logs:production": "wrangler tail -e production",
"logs:staging": "wrangler tail -e staging",
"lint": "eslint \"{src/**/*,*}.js\"",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattIPv4/DNS-over-Discord.git"
},
"author": "Matt (IPv4) Cowley",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MattIPv4/DNS-over-Discord/issues"
},
"homepage": "https://github.com/MattIPv4/DNS-over-Discord#readme",
"dependencies": {
"discord-api-types": "^0.37.110",
"dns-packet": "^5.6.1",
"is-valid-domain": "^0.1.6",
"web-whois": "0.0.7",
"workers-discord": "0.0.12",
"workers-sentry": "0.0.6"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@types/dns-packet": "^5.6.5",
"buffer": "^6.0.3",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"wrangler": "^3.92.0"
}
}