-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "shared-buffer",
"version": "1.4.0",
"description": "A minimal package that provides an ArrayBuffer that can be used across processes for interprocess-communication.",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"test": "npm run rebuild:debug && node --expose-gc tests/basic.js",
"build": "node-gyp --release configure build",
"build:debug": "node-gyp --debug configure build",
"rebuild": "node-gyp --release configure rebuild; npm run compile_commands",
"rebuild:debug": "node-gyp --debug configure rebuild; npm run compile_commands",
"compile_commands": "node-gyp --debug configure -- -f compile_commands_json",
"install": "npm run build"
},
"keywords": [
"ipc",
"process",
"cluster",
"shared",
"memory"
],
"author": "Abdullah Ali",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.23.0"
},
"repository": {
"type": "git",
"url": "https://github.com/voodooattack/shared-buffer.git"
},
"devDependencies": {
"@types/node": "^24.0.13",
"commitlint": "^19.8.1"
}
}