-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vantjs",
"version": "2.1.1",
"description": "platform independent javascript/typescript interface to Davis Vantage Pro, Pro 2 and Vue",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./errors": {
"types": "./dist/errors/index.d.ts",
"import": "./dist/errors/index.js"
},
"./weather-station": {
"types": "./dist/weather-station/index.d.ts",
"import": "./dist/weather-station/index.js"
},
"./weather-station/settings": {
"types": "./dist/weather-station/settings/index.d.ts",
"import": "./dist/weather-station/settings/index.js"
},
"./weather-station/events": {
"types": "./dist/weather-station/events/index.d.ts",
"import": "./dist/weather-station/events/index.js"
},
"./realtime-containers": {
"types": "./dist/realtime-containers/index.d.ts",
"import": "./dist/realtime-containers/index.js"
},
"./realtime-containers/settings": {
"types": "./dist/realtime-containers/settings/index.d.ts",
"import": "./dist/realtime-containers/settings/index.js"
},
"./realtime-containers/events": {
"types": "./dist/realtime-containers/events/index.d.ts",
"import": "./dist/realtime-containers/events/index.js"
},
"./structures": {
"types": "./dist/structures/index.d.ts",
"import": "./dist/structures/index.js"
},
"./structures/subtypes": {
"types": "./dist/structures/subtypes/index.d.ts",
"import": "./dist/structures/subtypes/index.js"
},
"./units": {
"types": "./dist/units/index.d.ts",
"import": "./dist/units/index.js"
},
"./util": {
"types": "./dist/util/index.d.ts",
"import": "./dist/util/index.js"
}
},
"type": "module",
"scripts": {
"build": "npx tsc",
"watch": "npx tsc --watch",
"start": "cd ./dist && node ",
"docs": "typedoc --options typedoc.json",
"watch-docs": "typedoc --options typedoc.json --watch",
"clear-dist": "rmdir /s dist && npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harrydehix/vantjs.git"
},
"keywords": [
"davis vantage pro",
"davis vantage vue",
"davis vantage pro 2",
"vantjs",
"javascript vantage",
"driver",
"interface"
],
"author": "Henri Hollmann",
"license": "ISC",
"bugs": {
"url": "https://github.com/harrydehix/vantjs/issues"
},
"homepage": "https://github.com/harrydehix/vantjs#readme",
"dependencies": {
"@harrydehix/easy-buffer": "^1.2.1",
"crc-full": "^1.1.0",
"deep-for-each": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flow": "^3.5.0",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"serialport": "^10.4.0",
"source-map-support": "^0.5.21",
"sprintf-js": "^1.0.3",
"tiny-typed-emitter": "^2.1.0",
"vant-environment": "^4.0.1"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.flow": "^3.5.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/node": "^15.14.9",
"@types/serialport": "^8.0.2",
"@types/sprintf-js": "^1.1.2",
"ts-node": "^10.0.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"eslintConfig": {
"rules": {
"no-case-declarations": 0,
"@typescript-eslint/no-case-declarations": 0
}
}
}