61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"author": "Luis Blanco <luisblanco1337@gmail.com>",
|
|
"name": "addon-tools-raub",
|
|
"version": "7.4.0",
|
|
"description": "Helpers for Node.js addons and dependency packages",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"keywords": [
|
|
"headers",
|
|
"include",
|
|
"events",
|
|
"utils",
|
|
"c++",
|
|
"addon",
|
|
"bindings",
|
|
"native",
|
|
"napi",
|
|
"gyp"
|
|
],
|
|
"files": [
|
|
"include",
|
|
"utils.js",
|
|
"utils.d.ts",
|
|
"index.js",
|
|
"index.d.ts",
|
|
"utils",
|
|
"LICENSE",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.16.0",
|
|
"npm": ">=9.5.1"
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint .",
|
|
"test": "node --test --watch .",
|
|
"test-ci": "node --test",
|
|
"build-test": "cd test-addon && node-gyp rebuild -j max --silent && cd .."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-3d/addon-tools-raub.git"
|
|
},
|
|
"peerDependencies": {
|
|
"node-addon-api": "^7.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"node-addon-api": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.8.3",
|
|
"eslint": "^8.51.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"node-addon-api": "^7.0.0",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|