This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
theme/package.json

25 lines
756 B
JSON
Raw Normal View History

2019-02-02 17:17:50 +01:00
{
"name": "vikunja-theme",
2022-01-26 21:58:18 +01:00
"version": "1.0.0",
2019-02-02 17:17:50 +01:00
"description": "A Hugo theme that gets used within all of our websites.",
2019-10-30 21:45:29 +01:00
"license": "LGPL-3.0-or-later",
2019-02-02 17:17:50 +01:00
"author": {
"name": "The Vikunja authors",
"email": "team@vikunja.io"
},
"scripts": {
2022-01-29 18:13:06 +01:00
"prod": "tailwindcss -i src/style.css -o static/css/styles.css --minify",
2022-01-29 18:08:19 +01: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 17:17:50 +01:00
},
"devDependencies": {
2022-01-26 22:10:57 +01:00
"@tailwindcss/typography": "^0.5.0",
2022-01-26 21:58:18 +01:00
"postcss": "^8.4.5",
"tailwindcss": "^3.0.17"
2022-01-29 14:17:06 +01:00
},
"dependencies": {
"@tailwindcss/forms": "^0.4.0"
2019-02-02 17:17:50 +01:00
}
}