-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "gateway-addon",
"version": "2.0.0",
"description": "Bindings for WebThings Gateway add-ons",
"scripts": {
"build": "if [ ! -d schema/messages ]; then git submodule init; fi; git submodule update && node generate-version.js && node generate-types.js && tsc -p .",
"lint": "eslint src --ext .ts",
"prettier": "npx prettier -w '*.js' 'src/*.ts'"
},
"main": "lib/index.js",
"keywords": [
"webthings"
],
"homepage": "https://github.com/WebThingsIO/gateway-addon-node",
"author": "WebThingsIO",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/gateway-addon-node.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/gateway-addon-node/issues"
},
"dependencies": {
"ajv": "^7.2.4",
"sqlite3": "^5.1.7",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^20.19.25",
"@types/sqlite3": "^3.1.11",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.2",
"json-schema-to-typescript": "^10.1.5",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"files": [
"LICENSE",
"lib",
"schema",
"src"
]
}