md/package.json

94 lines
2.8 KiB
JSON
Raw Normal View History

2020-01-13 22:16:04 +08:00
{
"name": "md",
2024-08-18 19:49:16 +08:00
"type": "module",
2023-12-07 11:44:52 +08:00
"version": "1.6.0",
2021-02-28 17:13:17 +08:00
"private": false,
2020-08-29 11:55:16 +08:00
"scripts": {
2024-08-18 19:49:16 +08:00
"start": "npm run dev",
"dev": "vite --host",
"build": "run-p type-check \"build:only {@}\" --",
"build:only": "vite build",
"build:h5-netlify": "run-p type-check \"build:h5-netlify:only {@}\" --",
"build:h5-netlify:only": "cross-env SERVER_ENV=NETLIFY vite build",
2024-12-09 15:40:33 +08:00
"build:cli": "npm run build && npx shx rm -rf md-cli/dist && npx shx rm -rf dist/**/*.map && npx shx cp -r dist md-cli/ && cd md-cli && npm pack",
"build:analyze": "cross-env ANALYZE=true vite build",
2024-08-18 19:49:16 +08:00
"preview": "npm run build && vite preview",
"release:cli": "node ./scripts/release.js",
"ext:dev": "wxt",
"ext:zip": "wxt zip",
2024-08-18 19:49:16 +08:00
"lint": "eslint . --fix",
"type-check": "vue-tsc --build --force",
"postinstall": "simple-git-hooks && wxt prepare"
2020-08-29 11:55:16 +08:00
},
"dependencies": {
"@aws-sdk/client-s3": "^3.716.0",
2024-11-28 09:27:48 +08:00
"@vueuse/core": "^12.0.0",
"axios": "^1.7.8",
"buffer-from": "^1.1.2",
2024-11-28 09:27:48 +08:00
"class-variance-authority": "^0.7.1",
2024-08-18 19:49:16 +08:00
"clsx": "^2.1.1",
2024-08-19 09:18:10 +08:00
"codemirror": "^5.65.17",
2024-11-28 09:27:48 +08:00
"core-js": "^3.39.0",
"cos-js-sdk-v5": "^1.8.6",
"crypto-js": "^4.2.0",
"csstype": "^3.1.3",
2024-11-28 09:27:48 +08:00
"es-toolkit": "^1.27.0",
"form-data": "4.0.1",
"front-matter": "^4.0.2",
2024-08-21 08:56:22 +08:00
"highlight.js": "^11.10.0",
"juice": "^11.0.0",
2024-11-28 09:27:48 +08:00
"lucide-vue-next": "^0.462.0",
"marked": "^15.0.2",
"mermaid": "^11.4.1",
2024-08-19 09:18:10 +08:00
"minio": "7.1.3",
2024-08-21 08:56:22 +08:00
"node-fetch": "^3.3.2",
2024-11-28 09:27:48 +08:00
"pinia": "^2.2.7",
2024-08-21 08:56:22 +08:00
"qiniu-js": "^3.4.2",
2024-11-28 09:27:48 +08:00
"radix-vue": "^1.9.10",
"tailwind-merge": "^2.5.5",
2024-08-18 19:49:16 +08:00
"tailwindcss-animate": "^1.0.7",
2024-08-31 11:27:26 +08:00
"tiny-oss": "^0.5.1",
2024-11-28 09:27:48 +08:00
"uuid": "^11.0.3",
2024-12-15 20:15:06 +08:00
"vue": "^3.5.13",
"vue-pick-colors": "^1.7.8",
"vue-sonner": "^1.3.0"
2020-08-29 11:55:16 +08:00
},
"devDependencies": {
2024-11-28 09:27:48 +08:00
"@antfu/eslint-config": "3.11.0",
2024-09-16 17:07:47 +08:00
"@types/buffer-from": "^1.1.3",
2024-08-18 19:49:16 +08:00
"@types/codemirror": "^5.60.15",
2024-09-16 17:07:47 +08:00
"@types/crypto-js": "^4.2.2",
2024-11-28 09:27:48 +08:00
"@types/node": "^22.10.0",
2024-09-16 17:07:47 +08:00
"@types/uuid": "^10.0.0",
2024-11-28 09:27:48 +08:00
"@unocss/eslint-plugin": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.1",
2024-08-18 19:49:16 +08:00
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
2024-11-28 09:27:48 +08:00
"eslint": "^9.15.0",
2024-08-18 19:49:16 +08:00
"eslint-plugin-format": "^0.1.2",
2024-11-28 09:27:48 +08:00
"less": "^4.2.1",
"npm-run-all": "^4.1.5",
2024-11-28 09:27:48 +08:00
"postcss": "^8.4.49",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
2022-01-15 10:25:22 +08:00
"shx": "^0.3.4",
2024-08-18 19:49:16 +08:00
"simple-git-hooks": "^2.11.1",
2024-11-28 09:27:48 +08:00
"tailwindcss": "^3.4.15",
"typescript": "~5.6.2",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.6",
"unplugin-vue-components": "^0.27.5",
2024-09-25 14:22:09 +08:00
"vite": "^5.4.7",
2024-08-18 19:49:16 +08:00
"vite-plugin-node-polyfills": "^0.22.0",
2024-11-28 09:27:48 +08:00
"vite-plugin-vue-devtools": "^7.6.5",
"vue-tsc": "^2.1.10",
"wxt": "^0.19.19"
2024-08-18 19:49:16 +08:00
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "npm run lint"
2020-08-29 11:55:16 +08:00
}
}