-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 927 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 927 Bytes
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
{
"name": "2022-cpp-in-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"commonjs": "index.cjs",
"scripts": {
"configure": "node-gyp configure",
"configure:dev": "node-gyp configure --selected_configuration=DEBUG",
"configure:prod": "pnpm configure",
"prebuild": "npm run configure",
"prebuild:dev": "npm run configure:dev",
"build": "node-gyp -j 16 build",
"build:dev": "node-gyp -j 16 build --debug",
"build:prod": "node-gyp -j 16 build",
"rebuild:dev": "node-gyp -j 16 rebuild --debug",
"rebuild:prod": "node-gyp -j 16 rebuild",
"clean": "node-gyp clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nan": "^2.16.0",
"node-gyp": "^9.1.0",
"pnpm": "^7.12.0",
"vitest": "^0.22.1"
},
"packageManager": "yarn@3.2.3"
}