-
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.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 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": "wsjtx-lib",
"version": "1.2.5",
"description": "Node.js C++ extension for WSJTX digital radio protocol library",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"build/*.node",
"prebuilds",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:native && npm run build:ts",
"build:native": "cmake-js compile",
"build:win": "npm run build:win:core && npm run build:win:node && npm run build:ts",
"build:win:core": "echo 'Run in MSYS2 MinGW64 shell: mkdir -p build-core && cd build-core && cmake .. -G \"MinGW Makefiles\" -DWSJTX_BUILD_CORE_ONLY=ON -DCMAKE_BUILD_TYPE=Release && mingw32-make -j$(nproc)'",
"build:win:node": "cmake-js compile --CDWSJTX_BUILD_NODE_ONLY=ON --CDWSJTX_CORE_DIR=build-core",
"build:ts": "tsc",
"clean": "cmake-js clean && rimraf dist",
"test": "node --test dist/test/wsjtx.basic.test.js",
"test:full": "node --test dist/test/wsjtx.test.js",
"prepare": "npm run build:ts",
"package": "node scripts/package-prebuilds.js",
"prepublishOnly": "npm run build:ts"
},
"keywords": [
"wsjtx",
"ft8",
"ft4",
"wspr",
"ham",
"radio",
"digital",
"protocol",
"decoder",
"encoder",
"native",
"addon",
"typescript"
],
"author": "boybook",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/boybook/wsjtx-lib-nodejs.git"
},
"dependencies": {
"node-addon-api": "^8.3.1",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/wav": "^1.0.4",
"cmake-js": "^7.3.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.0",
"wav": "^1.0.2"
},
"engines": {
"node": ">=16.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}