@tak-ps/node-tak 2.1.2 → 4.0.2
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/CHANGELOG.md +16 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,22 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v4.0.2
|
|
14
|
+
|
|
15
|
+
- :arrow_up: Add necessary library types
|
|
16
|
+
|
|
17
|
+
### v4.0.1
|
|
18
|
+
|
|
19
|
+
- :arrow_up: Update required `node-tak` version to 8.0.1
|
|
20
|
+
|
|
21
|
+
### v4.0.0
|
|
22
|
+
|
|
23
|
+
- :arrow_up: Update required `node-tak` version to 8
|
|
24
|
+
|
|
25
|
+
### v3.0.0
|
|
26
|
+
|
|
27
|
+
- :arrow_up: Update required `node-tak` version to 7
|
|
28
|
+
|
|
13
29
|
### v2.1.2
|
|
14
30
|
|
|
15
31
|
- :rocket: Add automatic GH Release
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/node-tak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.2",
|
|
5
5
|
"description": "Lightweight JavaScript library for communicating with TAK Server",
|
|
6
6
|
"author": "Nick Ingalls <nick@ingalls.ca>",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
"ajv": "^8.12.0"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@tak-ps/node-cot": "^
|
|
20
|
+
"@tak-ps/node-cot": "^8.0.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
+
"@types/express": "^4.17.21",
|
|
23
24
|
"@types/node": "^20.0.0",
|
|
24
25
|
"@types/tape": "^5.6.0",
|
|
25
26
|
"eslint": "^8.35.0",
|