chatgpt-web/package.json

73 lines
1.9 KiB
JSON
Raw Normal View History

2023-02-08 22:21:33 -05:00
{
2023-02-10 19:32:59 -05:00
"name": "chatgpt-web",
2023-09-25 23:52:38 -04:00
"version": "2.11.1",
2023-02-10 19:32:59 -05:00
"private": false,
2023-02-13 19:45:07 -05:00
"description": "ChatGPT Web",
"author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
2023-02-10 19:32:59 -05:00
"keywords": [
2023-02-13 19:45:07 -05:00
"chatgpt-web",
2023-02-10 19:32:59 -05:00
"chatgpt",
"chatbot",
"vue"
],
"scripts": {
"dev": "vite",
2023-02-12 22:08:11 -05:00
"build": "run-p type-check build-only",
2023-02-10 19:32:59 -05:00
"preview": "vite preview",
2023-02-12 22:06:07 -05:00
"build-only": "vite build",
2023-02-10 19:32:59 -05:00
"type-check": "vue-tsc --noEmit",
2023-02-16 01:03:40 -05:00
"lint": "eslint .",
2023-02-12 22:03:10 -05:00
"lint:fix": "eslint . --fix",
2023-02-12 23:38:44 -05:00
"bootstrap": "pnpm install && pnpm run common:prepare",
2023-02-12 22:12:28 -05:00
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
"common:prepare": "husky install"
2023-02-10 19:32:59 -05:00
},
"dependencies": {
2024-05-15 21:38:50 -04:00
"@vscode/markdown-it-katex": "^1.0.3",
"@vueuse/core": "^9.13.0",
2023-03-06 06:25:40 -05:00
"highlight.js": "^11.7.0",
2024-04-18 22:30:10 -04:00
"html-to-image": "^1.11.11",
"katex": "^0.16.4",
"markdown-it": "^13.0.1",
2024-06-06 22:14:34 -04:00
"mermaid-it-markdown": "^1.0.8",
2023-02-10 19:32:59 -05:00
"naive-ui": "^2.34.3",
2023-03-16 21:25:16 -04:00
"pinia": "^2.0.33",
2023-02-12 23:38:44 -05:00
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
2023-02-12 23:38:44 -05:00
"vue-router": "^4.1.6"
2023-02-10 19:32:59 -05:00
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
2023-02-10 19:32:59 -05:00
"@iconify/vue": "^4.1.0",
2023-02-13 22:34:46 -05:00
"@types/crypto-js": "^4.1.1",
"@types/katex": "^0.16.0",
"@types/markdown-it": "^12.2.3",
2023-03-17 04:06:55 -04:00
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^18.14.6",
2023-02-10 19:32:59 -05:00
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"axios": "^1.3.4",
2023-02-13 22:34:46 -05:00
"crypto-js": "^4.1.1",
"eslint": "^8.35.0",
2023-02-12 22:03:10 -05:00
"husky": "^8.0.3",
"less": "^4.1.3",
2023-02-15 23:29:47 -05:00
"lint-staged": "^13.1.2",
2023-03-17 04:06:55 -04:00
"markdown-it-link-attributes": "^4.0.1",
2023-02-10 19:32:59 -05:00
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"rimraf": "^4.3.0",
"tailwindcss": "^3.2.7",
2023-02-10 19:32:59 -05:00
"typescript": "~4.9.5",
2023-03-16 21:25:16 -04:00
"vite": "^4.2.0",
"vite-plugin-pwa": "^0.14.4",
"vue-tsc": "^1.2.0"
2023-02-12 22:03:10 -05:00
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"pnpm lint:fix"
2023-02-12 22:03:10 -05:00
]
2023-02-10 19:32:59 -05:00
}
2023-02-08 22:21:33 -05:00
}