-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 835 Bytes
/
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
{
"name": "custom-attributes",
"version": "1.0.0",
"description": "Custom attributes for Home Assistant",
"main": "custom-attributes.js",
"repository": "[email protected]:Mariusthvdb/custom-attributes.git",
"author": "Mariusthvdb",
"license": "GPL-3.0",
"scripts": {
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"test:ts": "tsc --noEmit",
"prepare": "yarn build",
"prepublishOnly": "yarn test:ts",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.8.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.3.3"
},
"dependencies": {
"home-assistant-query-selector": "^2.1.3"
}
}