-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "vitrea-client",
"version": "0.0.8",
"description": "Vitrea Smart Home API Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bdsoha/vitrea-client.git"
},
"bugs": {
"url": "https://github.com/bdsoha/vitrea-client/issues"
},
"author": "Sohacheski, Dov Benyomin <[email protected]>",
"license": "MIT",
"keywords": [
"api-client",
"smarthome",
"smart-home",
"socket-client",
"vitrea"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"async-mutex": "^0.5.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/jest": "^29.5.14",
"eslint": "^9.14.0",
"eslint-plugin-align-import": "^1.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"engineStrict": true
}