62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "node-hid",
|
|
"description": "USB HID device access library",
|
|
"version": "3.3.0",
|
|
"author": "Hans Hübner <hans.huebner@gmail.com> (https://github.com/hanshuebner)",
|
|
"bugs": "https://github.com/node-hid/node-hid/issues",
|
|
"homepage": "https://github.com/node-hid/node-hid#readme",
|
|
"contributors": [
|
|
"Blake Miner <miner.blake@gmail.com>",
|
|
"Tod Kurt <todbotdotcom@gmail.com> (https://github.com/todbot)",
|
|
"Julian Waller <git@julusian.co.uk> (https://github.com/julusian)"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/node-hid/node-hid.git"
|
|
},
|
|
"scripts": {
|
|
"test": "node src/test-ci.js",
|
|
"showdevices": "node src/show-devices.js",
|
|
"prepublishOnly": "git submodule update --init",
|
|
"install": "pkg-prebuilds-verify ./binding-options.js || node-gyp rebuild",
|
|
"build": "node-gyp build",
|
|
"rebuild": "node-gyp clean configure build",
|
|
"clean": "rimraf build node_modules prebuilds package-lock.json",
|
|
"distclean": "npm run clean && rimraf hidapi"
|
|
},
|
|
"bin": {
|
|
"hid-showdevices": "./src/show-devices.js"
|
|
},
|
|
"main": "./nodehid.js",
|
|
"types": "./nodehid.d.ts",
|
|
"binary": {
|
|
"napi_versions": [
|
|
4
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=10.16"
|
|
},
|
|
"license": "(MIT OR X11)",
|
|
"dependencies": {
|
|
"node-addon-api": "^3.2.1",
|
|
"pkg-prebuilds": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^5.0.7"
|
|
},
|
|
"gypfile": true,
|
|
"files": [
|
|
"nodehid.js",
|
|
"nodehid.d.ts",
|
|
"binding-options.js",
|
|
"hidapi",
|
|
"prebuilds",
|
|
"src/*.cc",
|
|
"src/*.h",
|
|
"LICENSE*",
|
|
"README.md",
|
|
"binding.gyp"
|
|
]
|
|
}
|