-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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
56
57
{
"name": "s7-scl-gen",
"version": "1.18.0",
"type": "module",
"description": "S7 PLC SCL 代码自动生成",
"main": "/lib/index.js",
"exports": {
".": [
{
"import": "./lib/index.js"
},
"./lib/index.js"
]
},
"engines": {
"node": ">=21.2.0"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"nodemon": "^3.1.7"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"globby": "^13.2.2",
"gooconverter": "^1.0.3",
"matcher": "^5.0.0",
"mri": "^1.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.26.0",
"yaml": "^2.6.0"
},
"directories": {
"conf": "example",
"lib": "lib"
},
"bin": {
"s7scl": "./lib/cli.js"
},
"scripts": {
"clean": "rimraf -g ./example/*/ ./lib ./test/dist",
"dev": "rimraf -g ./example/*/ && node ./dev.js",
"build": "node ./build.js",
"prepublish": "pnpm clean && pnpm build",
"watch": "nodemon ./build.js",
"test": "rimraf -g ./test/dist && node --test"
},
"keywords": [
"modbusTCP",
"SCL",
"S7"
],
"author": "[email protected]",
"license": "MIT",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}