theme/package.json

25 lines
747 B
JSON
Raw Normal View History

2019-02-02 16:17:50 +00:00
{
"name": "vikunja-theme",
2022-01-26 20:58:18 +00:00
"version": "1.0.0",
2019-02-02 16:17:50 +00:00
"description": "A Hugo theme that gets used within all of our websites.",
2019-10-30 20:45:29 +00:00
"license": "LGPL-3.0-or-later",
2019-02-02 16:17:50 +00:00
"author": {
"name": "The Vikunja authors",
"email": "team@vikunja.io"
},
"scripts": {
2022-01-26 20:58:18 +00:00
"prod": "tailwindcss -i src/style.css -o static/css/styles.css",
2022-01-29 17:08:19 +00:00
"watch": "tailwindcss -i src/style.css -o static/css/styles.css --watch",
"clean": "rm -rf dist && mkdir dist",
"release": "tar -czvf dist/vikunja-theme.tar.gz archetypes layouts static LICENSE README.md theme.toml"
2019-02-02 16:17:50 +00:00
},
"devDependencies": {
2022-01-26 21:10:57 +00:00
"@tailwindcss/typography": "^0.5.0",
2022-01-26 20:58:18 +00:00
"postcss": "^8.4.5",
"tailwindcss": "^3.0.17"
2022-01-29 13:17:06 +00:00
},
"dependencies": {
"@tailwindcss/forms": "^0.4.0"
2019-02-02 16:17:50 +00:00
}
}