@tak-ps/node-tak 12.3.0 → 12.5.0

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 CHANGED
@@ -10,6 +10,18 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v12.5.0 - 2025-04-06
14
+
15
+ - :arrow_up: Update to TypeScript@6
16
+
17
+ ### v12.4.0 - 2025-03-18
18
+
19
+ - :arrow_up: Update pinned node-cot dep
20
+
21
+ ### v12.3.1 - 2025-03-18
22
+
23
+ - :arrow_up: Update pinned node-cot dep
24
+
13
25
  ### v12.3.0 - 2025-03-18
14
26
 
15
27
  - :rocket: Enable Flow Stripping Option
@@ -1 +1 @@
1
- {"root":["../cli.ts","../index.ts","../test/default.test.ts","../test/findCoT.test.ts","../test/pipeline.test.ts","../test/queue.test.ts","../lib/api.ts","../lib/auth.ts","../lib/commands.ts","../lib/fetch.ts","../lib/stream.ts","../lib/api/certificate.ts","../lib/api/client.ts","../lib/api/contacts.ts","../lib/api/credentials.ts","../lib/api/export.ts","../lib/api/files.ts","../lib/api/groups.ts","../lib/api/iconsets.ts","../lib/api/injectors.ts","../lib/api/locate.ts","../lib/api/mission-invite.ts","../lib/api/mission-layer.ts","../lib/api/mission-log.ts","../lib/api/mission.ts","../lib/api/oauth.ts","../lib/api/package.ts","../lib/api/profile.ts","../lib/api/query.ts","../lib/api/repeater.ts","../lib/api/security.ts","../lib/api/subscriptions.ts","../lib/api/types.ts","../lib/api/video.ts","../lib/utils/queue.ts"],"version":"5.9.3"}
1
+ {"root":["../cli.ts","../index.ts","../test/default.test.ts","../test/findCoT.test.ts","../test/pipeline.test.ts","../test/queue.test.ts","../lib/api.ts","../lib/auth.ts","../lib/commands.ts","../lib/fetch.ts","../lib/stream.ts","../lib/api/certificate.ts","../lib/api/client.ts","../lib/api/contacts.ts","../lib/api/credentials.ts","../lib/api/export.ts","../lib/api/files.ts","../lib/api/groups.ts","../lib/api/iconsets.ts","../lib/api/injectors.ts","../lib/api/locate.ts","../lib/api/mission-invite.ts","../lib/api/mission-layer.ts","../lib/api/mission-log.ts","../lib/api/mission.ts","../lib/api/oauth.ts","../lib/api/package.ts","../lib/api/profile.ts","../lib/api/query.ts","../lib/api/repeater.ts","../lib/api/security.ts","../lib/api/subscriptions.ts","../lib/api/types.ts","../lib/api/video.ts","../lib/utils/queue.ts"],"version":"6.0.2"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-tak",
3
3
  "type": "module",
4
- "version": "12.3.0",
4
+ "version": "12.5.0",
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",
@@ -35,11 +35,11 @@
35
35
  "mime": "^4.0.7",
36
36
  "p12-pem": "^1.0.5",
37
37
  "pem": "^1.14.8",
38
- "undici": "^7.8.0",
38
+ "undici": "^8.0.0",
39
39
  "xml-js": "^1.6.11"
40
40
  },
41
41
  "peerDependencies": {
42
- "@tak-ps/node-cot": "^14.30.0"
42
+ "@tak-ps/node-cot": "^v14.30.1"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@eslint/js": "^10.0.1",
@@ -54,7 +54,7 @@
54
54
  "tape": "^5.6.1",
55
55
  "tsx": "^4.19.4",
56
56
  "typedoc": "^0.28.1",
57
- "typescript": "^5.7.0",
57
+ "typescript": "^6.0.0",
58
58
  "typescript-eslint": "^8.0.0"
59
59
  },
60
60
  "repository": {
package/tsconfig.json CHANGED
@@ -14,13 +14,7 @@
14
14
  "moduleResolution": "nodenext",
15
15
  "resolveJsonModule": true,
16
16
  "sourceMap": true,
17
- "outDir": "dist",
18
- "baseUrl": ".",
19
- "paths": {
20
- "*": [
21
- "node_modules/*"
22
- ]
23
- }
17
+ "outDir": "dist"
24
18
  },
25
19
  "include": [
26
20
  "cli.ts",