tachiyomi-website/package.json
Soitora f67b3ddeae
Split configs and add Hooks
Fixes icon color being wrong
Adds hooks based off of paullaros work
News section which generates RSS
Dynamic meta with frontmatter support
Automatic sitemap

Co-Authored-By: Paul Laros <1512219+paullaros@users.noreply.github.com>
2023-07-20 18:33:57 +02:00

44 lines
1.1 KiB
JSON

{
"name": "tachiyomi-website",
"version": "3.0.0",
"description": "Official website for the Tachiyomi app.",
"license": "MPL-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/tachiyomiorg/website.git"
},
"bugs": {
"url": "https://github.com/tachiyomiorg/website/issues"
},
"scripts": {
"docs:dev": "vitepress dev src",
"docs:build": "vitepress build src",
"docs:preview": "vitepress preview src",
"format": "prettier --check --write .",
"format:fail": "prettier --check .",
"lint:mdl": "markdownlint \"**/*.md\" \".github/**/*.md\" --enable sentences-per-line --disable MD025 MD033"
},
"devDependencies": {
"feed": "^4.2.2",
"markdownlint": "^0.29.0",
"markdownlint-cli": "^0.35.0",
"prettier": "^3.0.0",
"sentences-per-line": "^0.2.1",
"sitemap": "^7.1.1",
"vitepress": "^1.0.0-beta.5",
"vue": "^3.3.4"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"vitepress-plugin-auto-sidebar": "^1.1.0"
}
}