-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@homebridge/camera-utils",
"version": "3.0.0",
"type": "module",
"description": "Utilities to simplify homebridge camera plugin development",
"author": "dgreif",
"license": "MIT",
"homepage": "https://github.com/homebridge/camera-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/camera-utils.git"
},
"bugs": {
"url": "https://github.com/homebridge/camera-utils/issues"
},
"keywords": [
"homebridge",
"camera",
"util",
"utilities",
"helpers",
"rtp",
"ffmpeg"
],
"main": "dist/index.js",
"scripts": {
"check": "npm install && npm outdated",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"watch:link": "npm link && tsc --watch --declaration",
"lint": "eslint '**/*.ts' --fix",
"build": "npm run clean && tsc --declaration",
"prepublishOnly": "npm i --package-lock-only && npm run lint && npm run build",
"postpublish": "npm run clean",
"clean": "rimraf dist && rimraf coverage",
"docs": "typedoc",
"lint-docs": "typedoc --emit none --treatWarningsAsErrors"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && npm test"
}
},
"publishConfig": {
"access": "public"
},
"maintainers": [
"dgreif"
],
"dependencies": {
"execa": "^9.5.1",
"ffmpeg-for-homebridge": "^2.1.7",
"pick-port": "^2.1.0",
"rxjs": "^7.8.1",
"systeminformation": "^5.23.5"
},
"files": [
"dist"
],
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.7",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@vitest/coverage-v8": "^2.1.4",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.2",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}