forked from dthompso99/node-hamlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "hamlib",
"version": "0.2.1",
"description": "Node.js wrapper for hamlib radio control library",
"main": "index.js",
"module": "lib/index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./index.js",
"types": "./index.d.ts"
}
},
"gypfile": true,
"license": "LGPL",
"repository": {
"type": "git",
"url": "https://github.com/boybook/node-hamlib.git"
},
"keywords": [
"ham",
"radio",
"hamlib",
"amateur-radio",
"transceiver",
"rig-control"
],
"files": [
"lib/",
"prebuilds/",
"src/",
"index.js",
"index.d.ts",
"binding.gyp",
"COPYING",
"README.md"
],
"scripts": {
"install": "node-gyp-build",
"build": "node-gyp configure && node-gyp build",
"build:all": "node scripts/build-all.js",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "node test/test_loader.js",
"test:network": "node test/test_network.js",
"test:dummy": "node test/test_dummy_complete.js",
"test:serial": "node test/test_serial_config.js",
"prebuild": "prebuildify --napi --strip",
"prepare": "",
"bundle": "node scripts/bundle-deps.js",
"bundle:macos": "bash scripts/bundle-macos.sh",
"bundle:linux": "bash scripts/bundle-linux.sh",
"bundle:windows": "node scripts/bundle-windows.js",
"verify": "node scripts/verify.js",
"verify:all": "node scripts/verify.js --all"
},
"dependencies": {
"node-addon-api": "^4.3.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"chalk": "^4.1.2",
"node-gyp": "^9.4.0",
"ora": "^5.4.1",
"prebuildify": "^5.0.0"
},
"preferUnplugged": true,
"engines": {
"node": ">=12.0.0"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}