-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
package.json
20 lines (20 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "edtunnel",
"version": "1.0.0",
"description": "A tunnel for the edgetunnel project to allow deployed applications to cloudflare pages and workers to be accessed via a custom domain.",
"main": "_worker.js",
"scripts": {
"deploy": "wrangler deploy",
"build": "wrangler deploy --dry-run",
"dev": "wrangler dev --remote",
"dev-local": "wrangler dev index.js --remote",
"obfuscate": "javascript-obfuscator index.js --output _worker.js --compact true --control-flow-flattening true --control-flow-flattening-threshold 1 --dead-code-injection true --dead-code-injection-threshold 1 --string-array true --string-array-encoding 'rc4' --string-array-threshold 1 --transform-object-keys true --unicode-escape-sequence true"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230710.1",
"javascript-obfuscator": "^4.1.1",
"wrangler": "^3.2.0"
}
}