@tak-ps/node-cot 5.0.0 → 5.0.1

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
+ ### v5.0.1
14
+
15
+ - :bug: Add `package.json` in `dist/`
16
+
13
17
  ### v5.0.0
14
18
 
15
19
  - :tada: `schema.json` is now automatically generated from Type Defs
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@tak-ps/node-cot",
3
+ "type": "module",
4
+ "version": "5.0.1",
5
+ "description": "Lightweight JavaScript library for parsing and manipulating TAK messages",
6
+ "author": "Nick Ingalls <nick@ingalls.ca>",
7
+ "main": "dist/index.js",
8
+ "types": "index.ts",
9
+ "scripts": {
10
+ "test": "ts-node-test test/",
11
+ "lint": "eslint *.ts lib/*.ts",
12
+ "doc": "typedoc index.ts",
13
+ "build": "typescript-json-schema --required --out ./lib/schema.json ./lib/types.ts JSONCoT && tsc --build && cp package.json dist/",
14
+ "pretest": "npm run lint"
15
+ },
16
+ "dependencies": {
17
+ "@turf/helpers": "^6.5.0",
18
+ "@turf/point-on-feature": "^6.5.0",
19
+ "@types/color": "^3.0.3",
20
+ "@types/geojson": "^7946.0.10",
21
+ "ajv": "^8.12.0",
22
+ "color": "^4.2.3",
23
+ "protobufjs": "^7.1.2",
24
+ "xml-js": "^1.6.11"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^20.0.0",
28
+ "@types/tape": "^5.6.0",
29
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
30
+ "@typescript-eslint/parser": "^6.0.0",
31
+ "eslint": "^8.35.0",
32
+ "eslint-plugin-node": "^11.1.0",
33
+ "tape": "^5.6.1",
34
+ "ts-node": "^10.9.1",
35
+ "ts-node-test": "^0.4.0",
36
+ "typedoc": "^0.25.0",
37
+ "typescript": "^5.0.0",
38
+ "typescript-json-schema": "^0.62.0"
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/dfpc-coe/node-cot.git"
43
+ },
44
+ "keywords": [
45
+ "tak",
46
+ "atak",
47
+ "wintak",
48
+ "cot",
49
+ "cusor",
50
+ "target",
51
+ "tactical"
52
+ ],
53
+ "license": "MIT",
54
+ "bugs": {
55
+ "url": "https://github.com/dfpc-coe/node-cot/issues"
56
+ },
57
+ "homepage": "https://github.com/dfpc-coe/node-cot#readme"
58
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-cot",
3
3
  "type": "module",
4
- "version": "5.0.0",
4
+ "version": "5.0.1",
5
5
  "description": "Lightweight JavaScript library for parsing and manipulating TAK messages",
6
6
  "author": "Nick Ingalls <nick@ingalls.ca>",
7
7
  "main": "dist/index.js",
@@ -10,7 +10,7 @@
10
10
  "test": "ts-node-test test/",
11
11
  "lint": "eslint *.ts lib/*.ts",
12
12
  "doc": "typedoc index.ts",
13
- "build": "typescript-json-schema --required --out ./lib/schema.json ./lib/types.ts JSONCoT && tsc --build",
13
+ "build": "typescript-json-schema --required --out ./lib/schema.json ./lib/types.ts JSONCoT && tsc --build && cp package.json dist/",
14
14
  "pretest": "npm run lint"
15
15
  },
16
16
  "dependencies": {