@tak-ps/node-tak 2.0.1 → 2.1.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,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v2.1.0
14
+
15
+ - :arrow_up: Update to ESLint Flat Config System
16
+
13
17
  ### v2.0.1
14
18
 
15
19
  - :white_check_mark: Fix tests
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-tak",
3
3
  "type": "module",
4
- "version": "2.0.1",
4
+ "version": "2.1.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",
@@ -14,7 +14,8 @@
14
14
  "pretest": "npm run lint"
15
15
  },
16
16
  "dependencies": {
17
- "ajv": "^8.12.0"
17
+ "ajv": "^8.12.0",
18
+ "typescript-eslint": "^7.6.0"
18
19
  },
19
20
  "peerDependencies": {
20
21
  "@tak-ps/node-cot": "^6.1.0"
@@ -22,10 +23,7 @@
22
23
  "devDependencies": {
23
24
  "@types/node": "^20.0.0",
24
25
  "@types/tape": "^5.6.0",
25
- "@typescript-eslint/eslint-plugin": "^7.0.0",
26
- "@typescript-eslint/parser": "^7.0.0",
27
26
  "eslint": "^8.35.0",
28
- "eslint-plugin-node": "^11.1.0",
29
27
  "tape": "^5.6.1",
30
28
  "ts-node": "^10.9.1",
31
29
  "ts-node-test": "^0.4.0",
package/.eslintrc.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
3
- "parser": "@typescript-eslint/parser",
4
- "plugins": ["@typescript-eslint"],
5
- "root": true,
6
- "rules": {
7
- "@typescript-eslint/ban-ts-comment": 1,
8
- "@typescript-eslint/no-explicit-any": 1
9
- }
10
- }