-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "tsvesync",
"version": "1.0.64",
"description": "A TypeScript library for interacting with VeSync smart home devices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"vesync",
"iot",
"smart-home",
"typescript",
"air-purifier",
"humidifier",
"smart-plug",
"smart-bulb"
],
"author": "Mick Giles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mickgiles/tsvesync.git"
},
"bugs": {
"url": "https://github.com/mickgiles/tsvesync/issues"
},
"homepage": "https://github.com/mickgiles/tsvesync#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.7.9",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"dotenv": "^16.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"files": [
"dist/**/*",
"src/**/*",
"api/**/*"
]
}