Tailchat-Assistant/package.json

25 lines
625 B
JSON
Raw Normal View History

2024-06-18 17:49:56 -04:00
{
2024-06-23 10:41:42 -04:00
"name": "Tailchat-Assistant",
2024-07-05 21:32:52 -04:00
"description": "Tailchat Assistant is your very own AI-powered chat bot, ready to implement into your guild!",
2024-06-18 17:49:56 -04:00
"dependencies": {
2024-07-02 01:19:47 -04:00
"chalk": "^4.1.2",
2024-06-18 17:49:56 -04:00
"openai": "^4.50.0",
"tailchat-client-sdk": "^1.0.9"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"typescript": "^5.4.5"
},
"scripts": {
2024-07-05 21:32:52 -04:00
"build": "tsc -p .",
2024-06-18 17:49:56 -04:00
"start": "node --env-file=.env ./dist/bot.js",
"cstart": "npm run build && npm run start",
2024-07-05 21:32:52 -04:00
"prepare": "husky prepare"
2024-06-18 17:49:56 -04:00
},
"lint-staged": {
"src/*.ts": "prettier --write"
}
}