-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "winix-api",
"version": "1.6.3",
"description": "Winix device API client library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/regaw-leinad/winix-api.git"
},
"bugs": {
"url": "https://github.com/regaw-leinad/winix-api/issues"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"build": "rm -rf ./dist && tsc",
"validate": "npm run lint && npm run build",
"prepublishOnly": "npm run lint && npm run build",
"version": "npm run validate",
"postversion": "git push && git push --tags && rm -rf ./dist"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "3.716.0",
"axios": "1.7.9",
"crc": "4.3.2",
"date-fns": "4.1.0",
"jsonwebtoken": "9.0.2"
},
"devDependencies": {
"@types/axios": "0.14.4",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "8.56.0",
"typescript": "5.3.3"
},
"keywords": [
"winix",
"winix api",
"winix air purifier"
]
}