-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.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
{
"name": "@bobfrankston/lxlan-node",
"version": "0.1.11",
"description": "Node.js transport wrapper for LIFX LAN protocol (lxlan) - provides UDP transport via rmfudp",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"preversion": "npm run build",
"release": "git add -A && git diff-index --quiet HEAD || git commit -m 'Build for release' && npm version patch",
"postversion": "git push && git push --tags && npm publish --loglevel=error"
},
"keywords": [
"lifx",
"lan",
"udp",
"nodejs",
"iot",
"smart-home",
"rmfudp"
],
"author": "Bob Frankston",
"license": "MIT",
"dependencies": {
"@bobfrankston/lxlan": "file:../lxlan",
"@bobfrankston/rmfudp": "file:../../../../utils/udp/rmfudp",
"@bobfrankston/udp-transport": "file:../../../../utils/udp/udp-transport"
},
"devDependencies": {
"@types/node": "^25.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/BobFrankston/lxlan-node.git"
}
}