-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "givenergy-modbus",
"version": "3.0.0",
"description": "Native Node.js client for GivEnergy inverters over their proprietary Modbus TCP protocol",
"repository": "github:jak/givenergy-modbus",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm test && npm run build",
"script:discover": "node scripts/discover.mjs",
"script:snapshot": "node scripts/snapshot.mjs",
"script:monitor": "node scripts/monitor.mjs",
"script:write-test": "node scripts/write-test.mjs",
"script:dump-registers": "node scripts/dump-registers.mjs",
"script:identify": "node scripts/identify.mjs",
"docs": "typedoc && vitepress build website",
"docs:dev": "typedoc && vitepress dev website"
},
"keywords": [
"givenergy",
"inverter",
"modbus",
"solar",
"battery",
"home-automation"
],
"license": "GPL-3.0-only",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitest": "^3.0.0"
}
}