-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
51
52
{
"name": "nodesockd",
"version": "2.0.0-rc.8",
"description": "Bridges a Nginx reverse proxy to a Node.js service using Unix sockets",
"homepage": "https://github.com/cdn77/node-socket-daemon",
"license": "MIT",
"author": {
"name": "Dan Kadera",
"email": "[email protected]",
"url": "https://www.cdn77.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cdn77/node-socket-daemon.git"
},
"dependencies": {
"@debugr/console": "^3.0.0-rc.8",
"@debugr/core": "^3.0.0-rc.10",
"js-yaml": "^4.1.0",
"semver": "^7.5.4",
"uuid": "^9.0.0",
"yargs": "^17.7.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.17.3",
"@types/semver": "^7.5.0",
"@types/uuid": "^9.0.2",
"@types/yargs": "^17.0.24",
"typescript": "^5.1.6"
},
"bin": {
"nodesockd": "dist/cli/cli.js"
},
"main": "dist/worker/index.js",
"typings": "dist/worker/index.d.ts",
"exports": {
".": {
"types": "./dist/worker/index.d.ts",
"default": "./dist/worker/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
}
},
"files": [
"dist"
]
}