-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.11 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
81
{
"name": "homekit-code",
"version": "1.2.13",
"description": "Generate a pairing HomeKit QR code label or scannable tag to setup your HomeKit accessory.",
"keywords": [
"apple",
"code",
"esp8266",
"esp32",
"homebridge",
"homekit",
"homekit-accessory",
"label",
"pairing",
"qrcode",
"tag"
],
"homepage": "https://github.com/simongolms/homekit-code.git",
"license": "MIT",
"author": {
"name": "Simon Golms",
"email": "[email protected]",
"url": "https://gol.ms"
},
"files": [
"lib"
],
"main": "lib/index.js",
"bin": {
"homekit-code": "lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/simongolms/homekit-code.git"
},
"bugs": {
"url": "https://github.com/simongolms/homekit-code/issues"
},
"scripts": {
"build": "tsc -p .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"prepare": "husky",
"release": "dotenv semantic-release --no-ci",
"release:ci": "semantic-release",
"release:dry-run": "npm run release -- --dry-run",
"repair": "npx --yes rimraf lib node_modules .git/hooks package-lock.json && npm install",
"test": "jest"
},
"dependencies": {
"@resvg/resvg-js": "2.6.2",
"qrcode": "1.5.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@boehringer-ingelheim/eslint-config": "4.2.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.2",
"@types/jest": "29.5.12",
"@types/node": "20.12.3",
"@types/qrcode": "1.5.5",
"dotenv-cli": "7.4.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"nodemon": "3.1.0",
"prettier": "3.2.5",
"semantic-release": "23.0.6",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.3"
}
}