-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 956 Bytes
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
{
"name": "@openbare/server",
"version": "1.0.0",
"description": "OpenBare - A decentralized, censorship-resistant web proxy server",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "node --test 'test/**/*.test.js'",
"lint": "eslint *.js"
},
"keywords": [
"proxy",
"bare-server",
"ultraviolet",
"censorship-resistant",
"decentralized",
"web-proxy"
],
"author": "OpenBare Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nichoals/openbare.git"
},
"dependencies": {
"@tomphttp/bare-server-node": "^2.0.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"dotenv": "^16.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}