| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "chatgpt-web",
- "version": "2.10.9",
- "private": false,
- "description": "ChatGPT Web",
- "author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
- "keywords": [
- "chatgpt-web",
- "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": {
- "@traptitech/markdown-it-katex": "^3.6.0",
- "@vicons/fa": "^0.12.0",
- "@vicons/tabler": "^0.12.0",
- "@vueuse/core": "^9.13.0",
- "dat.gui": "^0.7.9",
- "date-fns": "^2.29.3",
- "eruda": "^3.0.0",
- "eruda-code": "^2.1.0",
- "highlight.js": "^11.7.0",
- "html2canvas": "^1.4.1",
- "katex": "^0.16.4",
- "markdown-it": "^13.0.1",
- "mitt": "^3.0.0",
- "naive-ui": "^2.34.3",
- "phaser": "^3.60.0",
- "phavuer": "^0.12.1",
- "pinia": "^2.0.33",
- "qrcode.vue": "^3.3.4",
- "qs": "^6.11.1",
- "query-string": "^8.1.0",
- "resolve-url": "^0.2.1",
- "vite-plugin-imagemin": "^0.6.1",
- "vue": "^3.2.47",
- "vue-i18n": "^9.2.2",
- "vue-router": "^4.1.6",
- "vue3-lottie": "^2.7.0"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^0.35.3",
- "@commitlint/cli": "^17.4.4",
- "@commitlint/config-conventional": "^17.4.4",
- "@iconify/vue": "^4.1.0",
- "@rushstack/eslint-patch": "^1.2.0",
- "@types/crypto-js": "^4.1.1",
- "@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/qs": "^6.9.7",
- "@vitejs/plugin-vue": "^4.0.0",
- "@volar-plugins/prettier": "^1.2.0",
- "@vue/eslint-config-prettier": "^7.1.0",
- "@vue/eslint-config-typescript": "^11.0.2",
- "autoprefixer": "^10.4.13",
- "axios": "^1.3.4",
- "crypto-js": "^4.1.1",
- "eslint": "^8.35.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.7",
- "rimraf": "^4.2.0",
- "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"
- ]
- }
- }
|