-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "etherproxy",
"version": "1.1.0",
"description": "JSON-RPC reverse proxy tool designed for caching requests",
"main": "dist/index.js",
"bin": {
"etherproxy": "./dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"prepare": "npm run build",
"build": "tsc && chmod +x dist/index.js"
},
"keywords": [],
"author": "@Cafe137",
"license": "MIT",
"dependencies": {
"cafe-utility": "^11.0.2",
"node-fetch": "^2.6.9"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"typescript": "^5.0.3"
},
"node_deb": {
"entrypoints": {
"daemon": "dist/index.js"
},
"init": "systemd",
"install_strategy": "copy",
"package_name": "etherproxy",
"templates": {
"default_variables": "packaging/default/etherproxy",
"systemd_service": "packaging/systemd/etherproxy.service"
}
}
}