purifier-card
Version:
Air Purifier card for Home Assistant Lovelace UI
122 lines (121 loc) • 3.17 kB
JSON
{
"name": "purifier-card",
"version": "2.8.0",
"description": "Air Purifier card for Home Assistant Lovelace UI",
"main": "dist/purifier-card.js",
"scripts": {
"start": "rollup -c --watch",
"lint": "npm run lint:src && npm run lint:translations",
"lint:fix": "eslint src --fix",
"lint:src": "eslint src",
"lint:translations": "node scripts/validate-i18n",
"format": "prettier --write .",
"build": "rollup -c",
"test": "npm run lint && npm run build",
"prepare": "husky"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"purifier"
],
"author": {
"name": "Denys Dovhan",
"email": "denysdovhan@gmail.com",
"url": "http://denysdovhan.com"
},
"repository": {
"type": "git",
"url": "https://github.com/denysdovhan/purifier-card.git"
},
"license": "MIT",
"dependencies": {
"custom-card-helpers": "^2.0.0",
"ha-template": "^1.4.1",
"home-assistant-js-websocket": "^9.6.0",
"lit": "^3.3.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.39.2",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"postcss-preset-env": "^11.1.2",
"prettier": "^3.7.4",
"rollup": "^4.59.0",
"rollup-plugin-minify-html-literals-v3": "^1.3.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.2.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"singleQuote": true
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/purifier-card.js",
"label": "purifier-card.js"
}
]
}
],
"@semantic-release/git"
]
}
}