2023-07-18 02:00:06 +02:00
|
|
|
{
|
|
|
|
"name": "tachiyomi-website",
|
|
|
|
"version": "3.0.0",
|
|
|
|
"description": "Official website for the Tachiyomi app.",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"private": true,
|
2023-08-08 19:32:55 +02:00
|
|
|
"type": "module",
|
2023-07-18 02:00:06 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/tachiyomiorg/website.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/tachiyomiorg/website/issues"
|
|
|
|
},
|
2023-07-18 14:36:36 +02:00
|
|
|
"scripts": {
|
2023-07-30 03:12:47 +02:00
|
|
|
"test": "npm run lint && npm run build && npm run preview",
|
2023-07-26 01:30:34 +02:00
|
|
|
"dev": "vitepress dev src",
|
2023-07-30 03:12:47 +02:00
|
|
|
"build": "vitepress build src",
|
2023-07-26 01:30:34 +02:00
|
|
|
"preview": "vitepress preview src",
|
2023-07-26 00:22:22 +02:00
|
|
|
"lint": "npm run lint:es && npm run lint:prettier && npm run lint:mdl && npm run lint:style",
|
|
|
|
"lint:fix": "npm run lint:es:fix && npm run lint:prettier:fix && npm run lint:style:fix",
|
2023-08-08 19:32:55 +02:00
|
|
|
"lint:es": "eslint . --ext .vue,.js,.ts,.cjs,.mjs,.jsx,.tsx",
|
|
|
|
"lint:es:fix": "eslint . --ext .vue,.js,.ts,.cjs,.mjs,.jsx,.tsx --fix",
|
2023-07-25 22:38:04 +02:00
|
|
|
"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}\""
|
2023-07-18 14:36:36 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-21 17:20:10 +02:00
|
|
|
"@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",
|
2023-08-08 19:32:55 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
|
|
"@typescript-eslint/parser": "^6.3.0",
|
2023-07-30 03:12:47 +02:00
|
|
|
"eslint": "^8.46.0",
|
2023-07-26 00:22:22 +02:00
|
|
|
"eslint-config-standard": "^17.1.0",
|
2023-08-08 19:32:55 +02:00
|
|
|
"eslint-plugin-vue": "^9.16.1",
|
2023-07-20 18:33:57 +02:00
|
|
|
"feed": "^4.2.2",
|
2023-07-26 00:03:37 +02:00
|
|
|
"lint-staged": "^13.2.3",
|
2023-07-21 17:20:10 +02:00
|
|
|
"markdown-it-mdi": "^0.1.0",
|
2023-07-18 14:48:06 +02:00
|
|
|
"markdownlint": "^0.29.0",
|
|
|
|
"markdownlint-cli": "^0.35.0",
|
2023-08-08 19:32:55 +02:00
|
|
|
"prettier": "^3.0.1",
|
2023-07-18 14:48:06 +02:00
|
|
|
"sentences-per-line": "^0.2.1",
|
2023-07-25 22:38:04 +02:00
|
|
|
"stylelint": "^15.10.2",
|
|
|
|
"stylelint-stylus": "^0.18.0",
|
|
|
|
"stylus": "^0.59.0",
|
2023-07-26 00:22:22 +02:00
|
|
|
"vite-plugin-eslint": "^1.8.1",
|
2023-08-08 19:32:55 +02:00
|
|
|
"vitepress": "^1.0.0-rc.4",
|
2023-07-26 00:22:22 +02:00
|
|
|
"vue": "^3.3.4",
|
|
|
|
"vue-eslint-parser": "^9.3.1"
|
2023-07-18 14:38:14 +02:00
|
|
|
},
|
|
|
|
"simple-git-hooks": {
|
|
|
|
"pre-commit": "npm run lint-staged"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2023-07-26 00:03:37 +02:00
|
|
|
"*.{styl,vue}": "stylelint --fix",
|
|
|
|
"*.{html,json}": "prettier --write"
|
2023-07-20 18:33:57 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-21 17:20:10 +02:00
|
|
|
"@mdi/js": "^7.2.96",
|
2023-07-20 18:33:57 +02:00
|
|
|
"vitepress-plugin-auto-sidebar": "^1.1.0"
|
2023-07-18 14:36:36 +02:00
|
|
|
}
|
2023-07-18 02:00:06 +02:00
|
|
|
}
|