-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.99 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nodesockd",
"version": "2.1.0",
"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": "Eliška Daniela Kaderová",
"email": "eliska.kaderova@cdn77.com",
"url": "https://www.cdn77.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cdn77/node-socket-daemon.git"
},
"bin": {
"nodesockd": "dist/cli/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/worker/index.mjs",
"types": "dist/worker/index.d.mts",
"exports": {
".": {
"types": {
"require": "./dist/worker/index.d.cts",
"import": "./dist/worker/index.d.mts"
},
"require": "./dist/worker/index.cjs",
"import": "./dist/worker/index.mjs"
},
"./client": {
"types": {
"require": "./dist/client/index.d.cts",
"import": "./dist/client/index.d.mts"
},
"require": "./dist/client/index.cjs",
"import": "./dist/client/index.mjs"
}
},
"scripts": {
"dev": "pnpm build && mkdir -p examples/tmp && dist/cli/cli.mjs daemon --dev-server",
"cleanup": "rm -rf dist",
"oxlint": "oxlint",
"oxlint:fix": "oxlint --fix",
"oxfmt": "oxfmt --check",
"oxfmt:fix": "oxfmt --write",
"lint": "pnpm run '/^(oxlint|oxfmt)$/'",
"format": "pnpm run --sequential '/^(oxlint|oxfmt):fix$/'",
"build": "tsc --noEmit && tsdown",
"publint": "publint"
},
"dependencies": {
"@debugr/console": "^4.0.1",
"@debugr/core": "^4.0.1",
"js-yaml": "^5.3.0",
"semver": "^7.8.5",
"yargs": "^18.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@types/semver": "^7.8.0",
"@types/yargs": "^17.0.35",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"publint": "^0.3.23",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=24"
},
"engineStrict": true
}