Files
streamdeck-homeassistant/package.json
Christoph Giesche 4e1de77995 Convert active-states config to YAML format
The active-states configuration file has been converted from JSON to YAML format. This change includes deleting the existing JSON file, creating a new YAML file, and updating the dependencies and respective usages in the code by adding the js-yaml package. This modification aims to use YAML format to improve readability and ease of use.
2024-02-27 13:09:11 +01:00

37 lines
981 B
JSON

{
"name": "streamdeck-homeassistant-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"build_dev": "vite build --sourcemap inline --minify false",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@mdi/font": "^7.1.96",
"@mdi/js": "^7.1.96",
"@popperjs/core": "^2.11.8",
"axios": "^1.6.7",
"bootstrap": "^5.3.2",
"core-js": "^3.26.1",
"js-yaml": "^4.1.0",
"nunjucks": "3.2.4",
"snapsvg-cjs": "^0.0.6",
"vue": "^3.3.4"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"vite": "^4.4.9"
}
}