-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
{
"name": "@gladysassistant/integration-sdk",
"version": "0.13.0",
"description": "Official Node.js SDK to build external integrations for Gladys Assistant",
"main": "lib/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./esm/index.mjs",
"require": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"esm",
"index.d.ts"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"prettier-check": "prettier --check '**/*.{js,mjs,ts,json,md,yml}'",
"prettier": "prettier --write '**/*.{js,mjs,ts,json,md,yml}'",
"changelog": "conventional-changelog -n ./changelog.config.mjs -i CHANGELOG.md -s -r 1",
"check-types": "tsc -p tsconfig.json",
"test": "node --test test/*.test.js",
"coverage": "c8 node --test test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GladysAssistant/integration-sdk-js.git"
},
"keywords": [
"gladys",
"gladys-assistant",
"home-automation",
"integration",
"sdk"
],
"author": "Gladys Assistant",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GladysAssistant/integration-sdk-js/issues"
},
"homepage": "https://github.com/GladysAssistant/integration-sdk-js#readme",
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"typescript": "^7.0.2"
}
}