kahu-signalk 0.0.1 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ A `$RATTM` sentence contains:
|
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
102
|
# From your Signal K server's plugin directory
|
|
103
|
-
npm install
|
|
103
|
+
npm install kahu-signalk
|
|
104
104
|
|
|
105
105
|
# Or clone and link for development
|
|
106
106
|
git clone --recurse-submodules https://github.com/KAHU-radar/radarhub-signalk.git
|
|
@@ -108,7 +108,7 @@ cd radarhub-signalk
|
|
|
108
108
|
npm install
|
|
109
109
|
npm link
|
|
110
110
|
# Then from your Signal K server directory:
|
|
111
|
-
signalk-server --install
|
|
111
|
+
signalk-server --install kahu-signalk
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
**Note:** The `data/protocol` folder is a git submodule. If you cloned without `--recurse-submodules`, run:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kahu-signalk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Contribute AIS and ARPA targets from your vessel to crowdsourcing for marine safety!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"signalk-node-server-plugin",
|
|
@@ -18,15 +18,19 @@
|
|
|
18
18
|
"node": ">=20"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"test": "echo \"Error: no test specified\" && exit
|
|
21
|
+
"test": "echo \"Error: no test specified passing build\" && exit 0"
|
|
22
22
|
},
|
|
23
23
|
"author": "Kahu <info@kahu.earth>",
|
|
24
24
|
"license": "ISC",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/KAHU-radar/radarhub-signalk"
|
|
28
|
+
},
|
|
25
29
|
"dependencies": {
|
|
26
30
|
"avro-js": "^1.12.0",
|
|
27
31
|
"promise-socket": "^8.0.0",
|
|
28
32
|
"sqlite": "^5.1.1",
|
|
29
|
-
"sqlite3": "^
|
|
33
|
+
"sqlite3": "^6.0.1",
|
|
30
34
|
"uuid": "^8.1.0"
|
|
31
35
|
}
|
|
32
|
-
}
|
|
36
|
+
}
|