-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1016 Bytes
/
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": "rtljs",
"version": "3.0.0",
"description": "node.js interface for librtl-sdr, using FFI-NAPI. Works with newer versions of node (like v16)",
"main": "./lib/index.js",
"module": "./lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc -p tsconfig.json",
"documentation": "typedoc src/index.ts",
"prepublishOnly": "npm run tsc && npm run documentation"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arkanic/rtljs.git"
},
"keywords": [
"rtl-sdr",
"rtl",
"sdr",
"librtlsdr",
"sdr",
"rtl",
"radio",
"antenna"
],
"author": "Arkanic",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arkanic/rtljs/issues"
},
"homepage": "https://github.com/Arkanic/rtljs#readme",
"dependencies": {
"koffi": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
}
}