forked from REVrobotics/node-can-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
{
"name": "@rev-robotics/can-bridge",
"version": "3.2.0",
"author": "REV Robotics",
"description": "Access CAN Data from a USB device in Node.js",
"license": "MIT",
"main": "dist/binding.js",
"types": "dist/binding.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/REVrobotics/node-can-bridge.git"
},
"dependencies": {
"node-addon-api": "^6.0.0",
"node-gyp-build": "^4.8.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/node": "^16.18.18",
"adm-zip": "^0.5.10",
"axios": "^1.3.6",
"node-gyp": "^10.2.0",
"prebuildify": "^5.0.1",
"typescript": "^5.0.2"
},
"scripts": {
"install": "node-gyp-build \"node scripts/download-CanBridge.mjs\"",
"prepublishOnly": "node scripts/download-CanBridge.mjs && tsc && prebuildify --napi",
"pretest": "node-gyp-build && tsc",
"test": "node --napi-modules test/test_binding.js"
},
"engines": {
"node": ">=12.0.0"
},
"binary": {
"napi_versions": [
3
]
},
"gypfile": true
}