mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-10-31 23:15:05 +01:00
60 lines
1.9 KiB
JSON
60 lines
1.9 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": "npm run lint && vitepress build src",
|
|
"docs:preview": "vitepress preview src",
|
|
"lint": "npm run lint:prettier && npm run lint:mdl && npm run lint:style",
|
|
"lint:fix": "npm run lint:prettier:fix && npm run lint:style:fix",
|
|
"lint:prettier": "prettier --check \"src/**/*\"",
|
|
"lint:prettier:fix": "prettier --check --write \"src/**/*\"",
|
|
"lint:mdl": "markdownlint \"**/*.md\" \".github/**/*.md\" --enable sentences-per-line --disable MD025 MD033",
|
|
"lint:style": "stylelint \"**/*.{styl,vue}\" \"src/.vitepress/**/*.{styl,vue}\"",
|
|
"lint:style:fix": "stylelint --fix \"**/*.{styl,vue}\" \"src/.vitepress/**/*.{styl,vue}\""
|
|
},
|
|
"devDependencies": {
|
|
"@mdit/plugin-attrs": "^0.4.8",
|
|
"@mdit/plugin-figure": "^0.4.8",
|
|
"@mdit/plugin-img-lazyload": "^0.4.8",
|
|
"@mdit/plugin-img-mark": "^0.4.8",
|
|
"@mdit/plugin-img-size": "^0.4.8",
|
|
"@mdit/plugin-include": "^0.4.8",
|
|
"@mdit/plugin-tab": "^0.4.8",
|
|
"feed": "^4.2.2",
|
|
"lint-staged": "^13.2.3",
|
|
"markdown-it-mdi": "^0.1.0",
|
|
"markdownlint": "^0.29.0",
|
|
"markdownlint-cli": "^0.35.0",
|
|
"prettier": "^3.0.0",
|
|
"sentences-per-line": "^0.2.1",
|
|
"sitemap": "^7.1.1",
|
|
"stylelint": "^15.10.2",
|
|
"stylelint-stylus": "^0.18.0",
|
|
"stylus": "^0.59.0",
|
|
"vitepress": "^1.0.0-beta.6",
|
|
"vue": "^3.3.4"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "npm run lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{styl,vue}": "stylelint --fix",
|
|
"*.{html,json}": "prettier --write"
|
|
},
|
|
"dependencies": {
|
|
"@mdi/js": "^7.2.96",
|
|
"vitepress-plugin-auto-sidebar": "^1.1.0"
|
|
}
|
|
}
|