chatgpt-web/package.json

55 lines
1.3 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-02-11 21:40:22 -05:00
"version": "1.0.5",
2023-02-10 19:32:59 -05:00
"private": false,
"description": "ChatGPT Web Bot",
"author": "ChenZhaoYu <chenzhaoyu1994@gami.com>",
"keywords": [
"chatgpt",
"chatbot",
"web",
"vue"
],
"scripts": {
2023-02-12 22:12:28 -05:00
"bootstrap": "pnpm install && pnpm run common:prepare",
2023-02-10 19:32:59 -05:00
"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-12 22:03:10 -05:00
"lint:fix": "eslint . --fix",
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": {
"naive-ui": "^2.34.3",
"vue": "^3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
2023-02-12 22:03:10 -05:00
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
2023-02-10 19:32:59 -05:00
"@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",
2023-02-12 22:03:10 -05:00
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
2023-02-10 19:32:59 -05:00
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
2023-02-12 22:03:10 -05:00
"rimraf": "^4.1.2",
2023-02-10 19:32:59 -05:00
"tailwindcss": "^3.2.6",
"typescript": "~4.9.5",
"vite": "^4.1.1",
"vue-tsc": "^1.0.24"
2023-02-12 22:03:10 -05:00
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
"pnpm run lint:fix",
"pnpm run type-check"
]
2023-02-10 19:32:59 -05:00
}
2023-02-08 22:21:33 -05:00
}