-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 909 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 909 Bytes
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
{
"name": "send-to-home-assistant",
"version": "2025.09.2",
"description": "Browser extension to send page information to Home Assistant webhooks",
"main": "package/manifest.json",
"scripts": {
"lint": "eslint package/*.js",
"lint:fix": "eslint package/*.js --fix",
"test": "echo \"Manual testing with tests/xss-test.html\"",
"validate": "node scripts/validate-manifest.js",
"package": "node scripts/package-extension.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JOHLC/Send-to-Home-Assistant.git"
},
"keywords": [
"browser-extension",
"home-assistant",
"webhook",
"automation",
"chrome-extension",
"edge-extension"
],
"author": "JOHLC",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.1"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"Chrome >= 88",
"Edge >= 88"
]
}