md/package.json

79 lines
2.2 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": "cross-env SERVER_ENV=NETLIFY vite build",
"build:cli": "npm run build && npm run shx rm -rf md-cli/dist && npm run shx rm -rf dist/**/*.map && npm run shx cp -r dist md-cli/ && cd md-cli && npm run pack",
"preview": "npm run build && vite preview",
2023-12-07 11:44:52 +08:00
"release:cli": "node ./bin/release.js",
2024-08-18 19:49:16 +08:00
"lint": "eslint . --fix",
"type-check": "vue-tsc --build --force",
"postinstall": "simple-git-hooks"
2020-08-29 11:55:16 +08:00
},
"dependencies": {
2024-08-18 19:49:16 +08:00
"@element-plus/icons-vue": "^2.3.1",
2024-08-21 08:56:22 +08:00
"@vueuse/core": "^11.0.1",
"ali-oss": "^6.21.0",
"axios": "^1.7.4",
"buffer-from": "^1.1.2",
2024-08-18 19:49:16 +08:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
2024-08-19 09:18:10 +08:00
"codemirror": "^5.65.17",
2024-08-21 08:56:22 +08:00
"core-js": "^3.38.1",
2024-08-19 09:18:10 +08:00
"cos-js-sdk-v5": "^1.8.4",
"crypto-js": "^4.2.0",
2024-08-21 08:56:22 +08:00
"element-plus": "^2.8.0",
"form-data": "4.0.0",
2024-08-21 08:56:22 +08:00
"highlight.js": "^11.10.0",
"juice": "^8.0.0",
2024-08-21 08:56:22 +08:00
"katex": "^0.16.11",
"lucide-vue-next": "^0.428.0",
2022-08-05 17:09:52 +08:00
"marked": "^4.0.18",
2024-08-21 08:56:22 +08:00
"marked-katex-extension": "^5.1.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-08-18 19:49:16 +08:00
"pinia": "^2.2.2",
2024-08-21 08:56:22 +08:00
"qiniu-js": "^3.4.2",
2024-08-18 19:49:16 +08:00
"radix-vue": "^1.9.4",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
2024-08-19 09:18:10 +08:00
"uuid": "^10.0.0",
2024-08-21 08:56:22 +08:00
"vue": "^3.4.38"
2020-08-29 11:55:16 +08:00
},
"devDependencies": {
2024-08-21 08:56:22 +08:00
"@antfu/eslint-config": "2.26.0",
2024-08-18 19:49:16 +08:00
"@types/codemirror": "^5.60.15",
"@types/marked": "^4.0.0",
2024-08-21 08:56:22 +08:00
"@types/node": "^22.4.1",
"@unocss/eslint-plugin": "^0.62.2",
"@vitejs/plugin-vue": "^5.1.2",
2024-08-18 19:49:16 +08:00
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
2024-08-21 08:56:22 +08:00
"eslint": "^9.9.0",
2024-08-18 19:49:16 +08:00
"eslint-plugin-format": "^0.1.2",
"less": "^4.2.0",
"npm-run-all": "^4.1.5",
2023-07-29 16:36:10 +08:00
"prettier": "^2.8.8",
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",
"tailwindcss": "^3.4.10",
2024-08-21 08:56:22 +08:00
"typescript": "^5.5.4",
"unocss": "^0.62.2",
"vite": "^5.4.2",
2024-08-18 19:49:16 +08:00
"vite-plugin-node-polyfills": "^0.22.0",
2024-08-21 08:56:22 +08:00
"vue-tsc": "^2.0.29"
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
}
}