-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
42
43
44
{
"name": "cp2102n",
"version": "0.3.0",
"description": "Cross-platform Node.js binding for controlling GPIOs on Silicon Labs CP2102N",
"main": "lib/index.js",
"engines": {
"node": ">= 14.15.0"
},
"binary": {
"napi_versions": [
7
]
},
"scripts": {
"build:ts": "tsc -p .",
"build:addon": "cmake-js compile",
"build": "npm run build:ts && npm run build:addon",
"prepublishOnly": "npm run build:ts",
"install": "node scripts/check-prebuild.cjs || npm run build:addon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xingrz/node-cp2102n.git"
},
"keywords": [
"cp2102",
"cp2102n"
],
"author": "XiNGRZ <hi@xingrz.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xingrz/node-cp2102n/issues"
},
"homepage": "https://github.com/xingrz/node-cp2102n#readme",
"dependencies": {
"cmake-js": "^7.0.0-3",
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/node": "^18.0.3",
"typescript": "^4.7.4"
}
}