-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@aetherinox/doh-worker-wrangler",
"version": "1.0.0",
"description": "DNS-over-HTTPS (DoH) proxy on Cloudflare Workers",
"homepage": "https://github.com/aetherinox/cf-worker-doh",
"author": "aetherinox",
"license": "MIT",
"contributors": [
{
"name": "aetherinox",
"email": "118329232+aetherinox@users.noreply.github.com",
"url": "https://github.com/aetherinox"
},
{
"name": "EuropaServ",
"email": "118329232+aetherinox@users.noreply.github.com",
"url": "https://github.com/EuropaServ"
}
],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/aetherinox/cf-worker-doh.git"
},
"bugs": {
"url": "https://github.com/aetherinox/cf-worker-doh/issues"
},
"build": {
"appId": "com.doh.cfw.id"
},
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/aetherinox"
}
],
"keywords": [
"aetherinox",
"cloudflare",
"cloudflare-worker",
"worker",
"wrangler",
"self-hosting",
"dns-over-https",
"doh",
"dns"
],
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev --env dev",
"production": "wrangler dev --env production",
"start": "wrangler dev",
"login": "wrangler login",
"pretty": "prettier --write '**/*.{js,json}'",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"root": "node root.js",
"root:generate": "node root.js generate",
"env:root": "npx --quiet env-cmd --no-override node root.js",
"env:uuid": "npx --quiet env-cmd --no-override node root.js uuid",
"env:guid": "npx --quiet env-cmd --no-override node root.js guid",
"env:version": "node -p require('./package.json').version;"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"all-contributors-cli": "^6.26.1",
"prettier": "^3.5.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"uuid": "^11.1.0",
"wrangler": "^4.2.0"
},
"dependencies": {
"dns-packet": "^5.4.0"
},
"overrides": {
"wrangler": {
"fill-range": "~7.1.1"
}
}
}