@tak-ps/node-tak 2.1.0 → 2.1.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/.github/workflows/release.yml +3 -0
- package/CHANGELOG.md +8 -0
- package/eslint.config.js +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/eslint.config.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import eslint from '@eslint/js';
|
|
2
|
+
import tseslint from 'typescript-eslint';
|
|
3
|
+
|
|
4
|
+
export default tseslint.config(
|
|
5
|
+
eslint.configs.recommended,
|
|
6
|
+
...tseslint.configs.recommended,
|
|
7
|
+
{
|
|
8
|
+
"rules": {
|
|
9
|
+
"@typescript-eslint/no-explicit-any": "warn"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/node-tak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.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",
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
"pretest": "npm run lint"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"ajv": "^8.12.0"
|
|
18
|
-
"typescript-eslint": "^7.6.0"
|
|
17
|
+
"ajv": "^8.12.0"
|
|
19
18
|
},
|
|
20
19
|
"peerDependencies": {
|
|
21
20
|
"@tak-ps/node-cot": "^6.1.0"
|
|
@@ -28,7 +27,8 @@
|
|
|
28
27
|
"ts-node": "^10.9.1",
|
|
29
28
|
"ts-node-test": "^0.4.0",
|
|
30
29
|
"typedoc": "^0.25.0",
|
|
31
|
-
"typescript": "^5.3.0"
|
|
30
|
+
"typescript": "^5.3.0",
|
|
31
|
+
"typescript-eslint": "^7.6.0"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|