-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 642 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 642 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
{
"name": "node-api-cts",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"node:test": "node --test ./implementors/node/run-tests.ts",
"lint": "eslint && tsc",
"addons:configure": "cmake -S . -B ./build",
"addons:build": "cmake --build ./build",
"addons:clean": "git clean -xf '**/*.node' && rm -rf ./build",
"update-headers": "node scripts/update-headers.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"globals": "^17.4.0",
"typescript-eslint": "^8.58.0"
},
"dependencies": {
"amaro": "^1.1.5"
}
}