-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
49
50
51
52
53
{
"name": "@homebridge/plugin-ui-utils",
"type": "module",
"version": "2.0.0",
"description": "A tool to help plugins provide custom UI screens in the Homebridge UI.",
"author": {
"name": "oznu",
"email": "[email protected]"
},
"contributors": [
{
"name": "homebridge",
"url": "https://github.com/homebridge"
}
],
"license": "MIT",
"homepage": "https://github.com/homebridge/plugin-ui-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/plugin-ui-utils.git"
},
"bugs": {
"url": "https://github.com/homebridge/plugin-ui-utils/issues"
},
"keywords": [
"homebridge",
"homebridge-ui"
],
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"check": "npm install && npm outdated",
"build": "rimraf ./dist && tsc --project tsconfig.json && tsc --project tsconfig.ui.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run build",
"test": "echo \"No test script specified\" && exit 0",
"test-coverage": "echo \"No test-coverage script specified\" && exit 0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/node": "^22.9.1",
"eslint-plugin-format": "^0.1.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}