12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "name": "lcngchat",
- "version": "2.11.1",
- "private": false,
- "description": "LangChat",
- "author": "tycoding <langchat@outlook.com>",
- "keywords": [
- "chatgpt",
- "chatbot",
- "vue"
- ],
- "scripts": {
- "dev": "vite",
- "build": "run-p type-check build-only",
- "preview": "vite preview",
- "build-only": "vite build",
- "type-check": "vue-tsc --noEmit",
- "lint": "eslint .",
- "lint:fix": "eslint . --fix",
- "bootstrap": "pnpm install && pnpm run common:prepare",
- "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
- "common:prepare": "husky install"
- },
- "dependencies": {
- "@codemirror/lang-javascript": "^6.2.1",
- "@codemirror/lang-json": "^6.0.1",
- "@codemirror/theme-one-dark": "^6.1.2",
- "@traptitech/markdown-it-katex": "^3.6.0",
- "@vueuse/core": "^9.13.0",
- "codemirror": "^6.0.1",
- "date-fns": "^2.30.0",
- "docxtemplater": "^3.46.2",
- "echarts": "^5.4.3",
- "highlight.js": "^11.7.0",
- "html2canvas": "^1.4.1",
- "js-beautify": "^1.14.11",
- "jspdf": "^2.5.1",
- "katex": "^0.16.4",
- "markdown-it": "^13.0.1",
- "markmap-common": "^0.15.6",
- "markmap-lib": "^0.15.7",
- "markmap-view": "^0.15.6",
- "naive-ui": "^2.38.2",
- "pinia": "^2.0.33",
- "pizzip": "^3.1.6",
- "typed.js": "^2.1.0",
- "uuid": "^9.0.1",
- "vue": "^3.2.47",
- "vue-codemirror": "^6.1.1",
- "vue-demi": "^0.14.6",
- "vue-echarts": "^6.6.4",
- "vue-i18n": "^9.2.2",
- "vue-router": "^4.1.6"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^0.35.3",
- "@commitlint/cli": "^17.4.4",
- "@commitlint/config-conventional": "^17.4.4",
- "@iconify/vue": "^4.1.0",
- "@types/crypto-js": "^4.1.1",
- "@types/js-beautify": "^1.14.3",
- "@types/katex": "^0.16.0",
- "@types/markdown-it": "^12.2.3",
- "@types/markdown-it-link-attributes": "^3.0.1",
- "@types/node": "^18.14.6",
- "@types/uuid": "^9.0.7",
- "@vitejs/plugin-vue": "^4.0.0",
- "autoprefixer": "^10.4.13",
- "axios": "^1.3.4",
- "crypto-js": "^4.1.1",
- "eslint": "^8.46.0",
- "eslint-config-prettier": "^8.10.0",
- "eslint-define-config": "1.12.0",
- "eslint-plugin-jest": "^27.2.3",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-vue": "^9.17.0",
- "husky": "^8.0.3",
- "less": "^4.1.3",
- "lint-staged": "^13.1.2",
- "markdown-it-link-attributes": "^4.0.1",
- "npm-run-all": "^4.1.5",
- "postcss": "^8.4.21",
- "prettier": "^2.8.8",
- "rimraf": "^4.2.0",
- "stylelint-config-prettier": "^9.0.5",
- "tailwindcss": "^3.2.7",
- "typescript": "~4.9.5",
- "vite": "^4.2.0",
- "vite-plugin-pwa": "^0.14.4",
- "vue-tsc": "^1.2.0"
- },
- "lint-staged": {
- "*.{ts,tsx,vue}": [
- "pnpm lint:fix"
- ]
- }
- }
|