forked from jisotalo/ads-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
{
"name": "ads-client",
"version": "2.1.0",
"description": "Beckhoff TwinCAT ADS client library for Node.js (unofficial). Connect to a Beckhoff TwinCAT automation system using the ADS protocol from a Node.js app.",
"main": "./dist/ads-client.js",
"scripts": {
"test-tc3": "jest --runInBand TC3/ads-client.test.js",
"test-tc2": "jest --runInBand TC2/ads-client.test.js",
"build": "tsc",
"watch": "tsc -w",
"create-docs": "npx typedoc"
},
"keywords": [
"ads",
"twincat",
"beckhoff",
"plc",
"iec-61131-3",
"61131-3",
"twincat 2",
"twincat 2.11",
"twincat 3",
"twincat 3.1",
"twincat ads",
"twincat-ads",
"codesys",
"client"
],
"author": "Jussi Isotalo <j.isotalo91@gmail.com> (https://github.com/jisotalo)",
"license": "MIT",
"homepage": "https://github.com/jisotalo/ads-client/",
"bugs": {
"url": "https://github.com/jisotalo/ads-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jisotalo/ads-client.git"
},
"dependencies": {
"debug": "^4.4.0",
"iconv-lite": "^0.6.3",
"long": "^5.2.3"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"types": "./dist/ads-client.d.ts"
}