himbot/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2023-05-28 20:20:00 -06:00
{
2023-07-06 23:00:28 -06:00
"name": "himbot",
"version": "4.2.0",
"engines": {
"node": ">=18.16.0"
},
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
2023-07-21 22:52:17 -06:00
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord.js-utilities": "7.0.1",
"@sapphire/framework": "^4.5.1",
"@sapphire/plugin-logger": "^3.0.5",
"@sapphire/utilities": "^3.13.0",
2023-07-06 23:00:28 -06:00
"@skyra/env-utilities": "^1.2.1",
"colorette": "^2.0.20",
"discord.js": "^14.11.0",
"openai": "^3.3.0"
},
"devDependencies": {
"@sapphire/cli": "^1.6.1",
2023-07-21 22:52:17 -06:00
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^4.0.1",
"@types/node": "^20.4.3",
2023-07-06 23:00:28 -06:00
"@types/ws": "^8.5.5",
2023-07-09 18:22:16 -06:00
"prettier": "^3.0.0",
2023-07-06 23:00:28 -06:00
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"watch:start": "tsc-watch --onSuccess \"npm run start\"",
"format": "prettier --write \"src/\""
},
"prettier": "@sapphire/prettier-config"
}