-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "material-rounded-theme",
"version": "3.0.5",
"description": "A Material You and Google Home app influenced theme for Home Assistant",
"main": "dist/material-rounded-theme.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack",
"prelint": "tsc --noemit",
"lint": "eslint --fix --config ./.eslintrc.config.cjs",
"setup": "git config --add core.hooksPath githooks && npm i"
},
"lint-staged": {
"*": "prettier -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerwyn/material-rounded-theme.git"
},
"author": "Nerwyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nerwyn/material-rounded-theme/issues"
},
"homepage": "https://github.com/Nerwyn/material-rounded-theme#readme",
"dependencies": {
"@material/material-color-utilities": "latest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"home-assistant-js-websocket": "latest",
"lint-staged": "latest",
"prettier": "latest",
"prettier-plugin-organize-imports": "latest",
"ts-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "latest"
}
}