-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "wattbox-api",
"displayName": "WattBox API Client",
"version": "1.1.1",
"description": "An unofficial Node.JS client library for WattBox IP Power devices.",
"keywords": [
"wattbox"
],
"homepage": "https://github.com/michaelahern/wattbox-api",
"bugs": {
"url": "http://github.com/michaelahern/wattbox-api/issues"
},
"license": "ISC",
"author": "Michael Ahern <michael.ahern@gmail.com>",
"files": [
"./lib"
],
"type": "module",
"exports": {
".": {
"default": "./lib/module.js",
"types": "./lib/module.d.ts"
}
},
"main": "./lib/module.js",
"types": "./lib/module.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/michaelahern/wattbox-api.git"
},
"scripts": {
"build": "npm run lint && tsc",
"clean": "rimraf ./lib",
"docs": "typedoc",
"example": "npm run build && node ./lib/example.js",
"lint": "eslint --max-warnings=0",
"lint-fix": "eslint --max-warnings=0 --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^10",
"@eslint/json": "^2",
"@eslint/markdown": "^8",
"@stylistic/eslint-plugin": "^5",
"@types/node": "^22",
"eslint": "^10",
"eslint-plugin-jsdoc": "^63",
"eslint-plugin-jsonc": "^3",
"eslint-plugin-yml": "^3",
"rimraf": "^6",
"typedoc": "~0.28",
"typescript": "~6.0",
"typescript-eslint": "^8"
},
"engines": {
"node": ">=22"
}
}