-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 982 Bytes
/
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
{
"name": "daichi",
"version": "1.1.3",
"description": "Comfort cloud API wrapper to control HVAC",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/niklv/daichi",
"bugs": "https://github.com/niklv/daichi/issues",
"license": "MIT",
"repository": {
"url": "git+https://github.com/niklv/daichi.git"
},
"files": [
"dist"
],
"keywords": [
"daichi",
"daikin",
"hvac"
],
"author": {
"name": "Nikita Lvov",
"email": "[email protected]",
"url": "https://github.com/niklv"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --dts-resolve --clean",
"prepack": "npm run build",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"prettier": "^3.3.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"debug": "^4.3.5",
"zod": "^3.23.8"
}
}