-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 KB
/
package.json
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
{
"name": "s7webserverapi",
"version": "1.1.1",
"description": "Unofficial Simatic-S7-Webserver JSON-RPC-API Client for S7-1200/1500 PLCs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"s7webservergen": "./dist/scripts/generateDBStructure.js"
},
"scripts": {
"build": "tsc --p tsconfig.json",
"buildScripts": "tsc --p tsconfig.scripts.json",
"postbuildScripts": "node ./scripts/add-shebang.js",
"s7webservergen": "node ./dist/scripts/generateDBStructure.js"
},
"author": "Endunry",
"repository": {
"type": "git",
"url": "git+https://github.com/Endunry/s7webserverapi.git"
},
"license": "MIT",
"keywords": [
"simatic",
"s7",
"jsonrpc",
"siemens",
"siemens-s7",
"jsonrpc2",
"siemens-s7-plcs",
"s7-plc",
"client-library",
"plc",
"sps",
"json-api",
"api"
],
"devDependencies": {
"ts-node": "^10.9.2"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/xml2js": "^0.4.14",
"cmd-ts": "^0.13.0",
"fs-extra": "^11.3.0",
"murmurhash": "^2.0.1",
"node-localstorage": "^3.0.5",
"rxjs-http-client": "^8.0.0",
"vm": "^0.1.0",
"xml2js": "^0.6.2",
"typescript": "^5.7.3"
}
}