chatgpt-web/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2023-02-08 22:21:33 -05:00
{
2023-02-09 02:51:19 -05:00
"name": "chatgpt-web",
2023-02-09 21:31:41 -05:00
"version": "1.0.2",
2023-02-09 02:48:27 -05:00
"description": "ChatGPT Web Bot",
"author": "ChenZhaoYu <chenzhaoyu1994@gami.com>",
"private": false,
"keywords": [
"chatgpt",
"chatbot",
"web",
"vue"
],
"scripts": {
"dev": "vite",
"service": "esno ./service/index.ts",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
2023-02-09 20:22:06 -05:00
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"release": "bumpp package.json --commit --push --tag"
2023-02-09 02:48:27 -05:00
},
"dependencies": {
"naive-ui": "^2.34.3",
"vue": "^3.2.45"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@iconify/vue": "^4.1.0",
"@types/babel__core": "^7.20.0",
"@types/express": "^4.17.17",
"@types/node": "^18.11.12",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"axios": "^1.3.2",
2023-02-09 20:22:06 -05:00
"bumpp": "^8.2.1",
2023-02-09 02:48:27 -05:00
"chatgpt": "^4.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.22.0",
"esno": "^0.16.3",
"express": "^4.18.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.6",
"typescript": "~4.7.4",
"vite": "^4.0.0",
"vue-tsc": "^1.0.12"
}
2023-02-08 22:21:33 -05:00
}