-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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": "cloudflare-allowme",
"version": "1.5.0",
"description": "Simplistic Cloudflare firewall manager to allow source IPs on a specific Cloudflare zone.",
"keywords": [
"access",
"cloudflare",
"firewall",
"ip"
],
"author": "Igor Ramadas <[email protected]>",
"homepage": "https://github.com/igoramadas/cloudflare-allowme",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/igoramadas/cloudflare-allowme.git"
},
"engines": {
"node": ">= 20.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc --removeComments",
"start": "node lib/index.js"
},
"dependencies": {
"anyhow": "^3.4.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"ua-parser-js": "^2.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/ua-parser-js": "^0.7.39",
"typescript": "^5.7.2"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
}
}