forked from homebridge/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "@homebridge/plugins",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Information and resources for Homebridge plugins.",
"author": "",
"license": "ISC",
"homepage": "https://github.com/homebridge/plugins#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/plugins.git"
},
"bugs": {
"url": "https://github.com/homebridge/plugins/issues"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"plugin-checks:build": "tsc -p src/plugin-checks",
"plugin-checks:run": "node src/plugin-checks/index.js",
"plugin-tarballs:build": "tsc -p src/plugin-tarballs",
"plugin-tarballs:run": "node src/plugin-tarballs/index.js",
"sort-json-files": "node scripts/sort-json-files.js"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"axios": "^1.7.7",
"form-data": "^4.0.1",
"fs-extra": "^11.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@fastify/pre-commit": "^2.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.3",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2"
},
"pre-commit": [
"sort-json-files"
]
}