-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 901 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 901 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
{
"scripts": {
"dev": "tsx src/index.ts",
"dev:cpp": "node-gyp configure --debug && node-gyp build --debug",
"start": "node dist/index.js",
"build": "pnpm build:cpp && pnpm build:ts",
"build:cpp": "node-gyp rebuild --no-debug",
"build:ts": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json"
},
"gypfile": true,
"name": "node-api-test",
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@types/node": "^24.1.0",
"node-api-headers": "^1.5.0",
"node-gyp": "^11.3.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.2"
},
"dependencies": {
"node-addon-api": "^8.5.0",
"tsx": "^4.20.3"
},
"author": "",
"license": "ISC",
"description": "",
"packageManager": "[email protected]+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}