chatgpt-web/package.json

63 lines
1.6 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-17 20:59:39 -05:00
"version": "2.4.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": {
"@vueuse/core": "^9.12.0",
2023-02-14 22:07:21 -05:00
"highlight.js": "^11.7.0",
2023-02-10 19:32:59 -05:00
"naive-ui": "^2.34.3",
2023-02-13 21:51:47 -05:00
"pinia": "^2.0.30",
2023-02-12 23:38:44 -05:00
"vue": "^3.2.47",
"vue-router": "^4.1.6"
2023-02-10 19:32:59 -05:00
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
2023-02-13 08:02:25 -05:00
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
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",
2023-02-10 19:32:59 -05:00
"@types/node": "^18.13.0",
"@types/web-bluetooth": "^0.0.16",
2023-02-10 19:32:59 -05:00
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
2023-02-15 23:29:47 -05:00
"axios": "^1.3.3",
2023-02-13 22:34:46 -05:00
"crypto-js": "^4.1.1",
2023-02-10 19:32:59 -05:00
"eslint": "^8.34.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-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",
2023-02-15 23:29:47 -05:00
"vue-tsc": "^1.1.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
}