-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.41 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.41 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
{
"name": "better-abstractsocket",
"version": "1.0.2",
"description": "A Node.js module for abstract Unix domain sockets on Linux and macOS.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/canvascat/abstract-socket.git"
},
"homepage": "https://github.com/canvascat/abstract-socket#readme",
"bugs": {
"url": "https://github.com/canvascat/abstract-socket/issues"
},
"keywords": [
"abstract-socket",
"unix-domain-socket",
"linux",
"macos"
],
"author": {
"name": "canvascat",
"email": "canvascat@outlook.com"
},
"files": [
"binding.gyp",
"_binding.gyp",
"install.cjs",
"src",
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsdown",
"install": "node install.cjs",
"build-release": "node-gyp rebuild --release",
"test": "vitest",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"devDependencies": {
"@types/node": "^24.0.10",
"oxlint": "^1.5.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"nan": "^2.22.2",
"prebuild-install": "^7.1.3"
}
}