chatgpt-web/service/package.json

41 lines
901 B
JSON
Raw Normal View History

{
"name": "chatgpt-web-service",
"version": "1.0.0",
"private": false,
2023-02-13 19:45:07 -05:00
"description": "ChatGPT Web Service",
"author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
"keywords": [
2023-02-13 19:45:07 -05:00
"chatgpt-web",
"chatgpt",
"chatbot",
2023-02-13 19:45:07 -05:00
"express"
],
"engines": {
"node": "^16 || ^18"
},
"scripts": {
"start": "esno ./src/index.ts",
"prod": "esno ./build/index.js",
"build": "pnpm clean && tsup",
"clean": "rimraf build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
2023-02-13 08:02:25 -05:00
"chatgpt": "^4.3.2",
"express": "^4.18.2",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@types/express": "^4.17.17",
"@types/node": "^18.13.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"esno": "^0.16.3",
"rimraf": "^4.1.2",
"tsup": "^6.6.2",
"typescript": "^4.9.5"
}
}