* sample env and late version incr * added slash command compatibility * updated command name * updated environment sample * updated interaction comment
37 lines
882 B
JSON
37 lines
882 B
JSON
{
|
|
"name": "discord-ollama",
|
|
"version": "0.1.4",
|
|
"description": "Ollama Integration into discord",
|
|
"main": "build/index.js",
|
|
"exports": "./build/index.js",
|
|
"scripts": {
|
|
"dev-tsx": "tsx watch src/index.ts",
|
|
"dev-mon": "nodemon --config nodemon.json src/index.ts",
|
|
"build": "tsc",
|
|
"prod": "node .",
|
|
"client": "npm run build && npm run prod",
|
|
"API": "ollama serve",
|
|
"start": "concurrently \"npm:API\" \"npm:client\""
|
|
},
|
|
"author": "Kevin Dang",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"concurrently": "^8.2.2",
|
|
"discord.js": "^14.14.1",
|
|
"dotenv": "^16.3.1",
|
|
"ollama": "^0.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.5",
|
|
"nodemon": "^3.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.6.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
}
|