md/package.json
Honwhy Wang 48e96440cc
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
Build and Push Docker Images / build (push) Has been skipped
feat: fix el-link (#520)
* feat: fix el-link
* feat: no tabs permission need
2025-01-19 21:55:05 +08:00

100 lines
3.0 KiB
JSON

{
"name": "md",
"type": "module",
"version": "1.6.0",
"private": false,
"scripts": {
"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",
"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",
"preview": "npm run build && vite preview",
"release:cli": "node ./scripts/release.js",
"ext:dev": "wxt",
"ext:zip": "wxt zip",
"firefox:dev": "wxt -b firefox",
"firefox:zip": "wxt zip -b firefox",
"lint": "eslint . --fix",
"type-check": "vue-tsc --build --force",
"postinstall": "simple-git-hooks && wxt prepare"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.716.0",
"@vee-validate/yup": "^4.15.0",
"@vueuse/core": "^12.0.0",
"axios": "^1.7.8",
"buffer-from": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^5.65.17",
"core-js": "^3.39.0",
"cos-js-sdk-v5": "^1.8.6",
"crypto-js": "^4.2.0",
"csstype": "^3.1.3",
"es-toolkit": "^1.27.0",
"form-data": "4.0.1",
"front-matter": "^4.0.2",
"highlight.js": "^11.10.0",
"juice": "^11.0.0",
"lucide-vue-next": "^0.462.0",
"marked": "^15.0.2",
"mermaid": "^11.4.1",
"minio": "7.1.3",
"node-fetch": "^3.3.2",
"pinia": "^2.2.7",
"qiniu-js": "^3.4.2",
"radix-vue": "^1.9.10",
"reading-time": "^1.5.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"tiny-oss": "^0.5.1",
"uuid": "^11.0.3",
"vee-validate": "^4.15.0",
"vue": "^3.5.13",
"vue-pick-colors": "^1.7.8",
"vue-sonner": "^1.3.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "3.11.0",
"@types/buffer-from": "^1.1.3",
"@types/codemirror": "^5.60.15",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.0",
"@types/uuid": "^10.0.0",
"@unocss/eslint-plugin": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2",
"less": "^4.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"shx": "^0.3.4",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.15",
"typescript": "~5.6.2",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.6",
"unplugin-vue-components": "^0.27.5",
"vite": "^5.4.7",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-vue-devtools": "^7.6.5",
"vue-tsc": "^2.1.10",
"wxt": "^0.19.19"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "npm run lint"
}
}