56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "chatgpt-web",
|
|
"version": "2.0.0",
|
|
"private": false,
|
|
"description": "ChatGPT Web Bot",
|
|
"author": "ChenZhaoYu <chenzhaoyu1994@gami.com>",
|
|
"keywords": [
|
|
"chatgpt",
|
|
"chatbot",
|
|
"web",
|
|
"vue"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check build-only",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --noEmit",
|
|
"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": {
|
|
"naive-ui": "^2.34.3",
|
|
"vue": "^3.2.47",
|
|
"vue-router": "^4.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.35.2",
|
|
"@commitlint/cli": "^17.4.2",
|
|
"@commitlint/config-conventional": "^17.4.2",
|
|
"@iconify/vue": "^4.1.0",
|
|
"@types/node": "^18.13.0",
|
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
"autoprefixer": "^10.4.13",
|
|
"axios": "^1.3.2",
|
|
"eslint": "^8.34.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.21",
|
|
"rimraf": "^4.1.2",
|
|
"tailwindcss": "^3.2.6",
|
|
"typescript": "~4.9.5",
|
|
"vite": "^4.1.1",
|
|
"vue-tsc": "^1.0.24"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,jsx,tsx,vue}": [
|
|
"pnpm run lint:fix",
|
|
"pnpm run type-check"
|
|
]
|
|
}
|
|
}
|