-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.05 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@tak-ps/node-tak",
"type": "module",
"version": "12.4.0",
"description": "Lightweight JavaScript library for communicating with TAK Server",
"author": "Nick Ingalls <nick@ingalls.ca>",
"main": "dist/index.js",
"types": "index.ts",
"bin": {
"tak": "./cli.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lib/*": "./dist/lib/*.js",
"./lib/api/*": "./dist/lib/api/*.js"
},
"engines": {
"node": ">= 22"
},
"scripts": {
"test": "c8 --reporter=lcov --reporter html tsx --test test/*.ts",
"lint": "eslint *.ts test/ lib/",
"doc": "typedoc index.ts",
"build": "tsc --build",
"pretest": "npm run lint"
},
"dependencies": {
"@openaddresses/batch-error": "^2.12.0",
"@sinclair/typebox": "^0.34.41",
"ajv": "^8.12.0",
"form-data": "^4.0.2",
"mime": "^4.0.7",
"p12-pem": "^1.0.5",
"pem": "^1.14.8",
"undici": "^7.8.0",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"@tak-ps/node-cot": "^v14.30.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inquirer/prompts": "^8.0.1",
"@types/minimist": "^1.2.5",
"@types/node": "^25.0.0",
"@types/pem": "^1.14.4",
"@types/tape": "^5.6.0",
"c8": "^11.0.0",
"eslint": "^10.0.0",
"minimist": "^1.2.8",
"tape": "^5.6.1",
"tsx": "^4.19.4",
"typedoc": "^0.28.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dfpc-coe/node-tak"
},
"keywords": [
"tak",
"atak",
"wintak",
"cot",
"cusor",
"target",
"tactical"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dfpc-coe/node-tak/issues"
},
"homepage": "https://github.com/dfpc-coe/node-tak#readme"
}