This repository was archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "rf24meshserialnode",
"description": "Node.js library for RF24MeshSerial",
"author": "BCsabaEngine <csaba@balazs-magyar.hu>",
"version": "0.11.0",
"license": "ISC",
"exports": "./dist/RF24MeshSerialNode.js",
"main": "./dist/RF24MeshSerialNode.js",
"types": "./dist/RF24MeshSerialNode.d.ts",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SegmentController/RF24MeshSerialNode.git"
},
"bugs": {
"url": "https://github.com/SegmentController/RF24MeshSerialNode/issues"
},
"homepage": "https://github.com/SegmentController/RF24MeshSerialNode",
"scripts": {
"dev": "nodemon examples/simpleNode.ts",
"clean": "tsc --build --clean",
"build": "tsc --build --clean && tsc --build --force",
"npm-publish-patch": "npm run build && npm version patch && npm publish && npm run clean && git push",
"npm-publish-minor": "npm run build && npm version minor && npm publish && npm run clean && git push"
},
"keywords": [
"nodejs",
"rf24",
"rf24mesh",
"rf24meshserial",
"serialbridge"
],
"dependencies": {
"serialport": "^12.0.0"
},
"devDependencies": {
"@types/node": "20.9.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}