Initial commit

This commit is contained in:
JB
2026-02-12 21:12:11 -05:00
commit 9023b68e66
22 changed files with 1291 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "star-kitten",
"version": "0.0.1",
"description": "A Discord bot for Eve Online",
"author": "j-b-3",
"type": "module",
"module": "src/main.ts",
"private": true,
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.49.0",
"@types/bun": "^1.2.21",
"@types/node": "^24.3.1",
"husky": "^9.1.7",
"mkdirp": "^3.0.1",
"prettier": "^3.6.2"
},
"dependencies": {
"@projectdysnomia/dysnomia": "github:projectdysnomia/dysnomia#dev",
"@star-kitten/util": "link:@star-kitten/util",
"@star-kitten/discord": "link:@star-kitten/discord",
"@star-kitten/eve": "link:@star-kitten/eve",
"@star-kitten/eve-discord": "link:@star-kitten/eve-discord"
},
"scripts": {
"dev": "bunx @dotenvx/dotenvx run -f .env.development -- bun run --watch src/main.ts",
"start": "bunx @dotenvx/dotenvx run -f .env.production -- bun src/main.ts",
"build": "mkdirp ./db && bun build --minify --sourcemap src/main.ts --target bun --outdir ./dist",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "bun test",
"encrypt": "bunx dotenvx encrypt -f .env.development && bunx dotenvx encrypt -f .env.production",
"decrypt": "bunx dotenvx decrypt -f .env.development && bunx dotenvx decrypt -f .env.production",
"prepare": "husky"
}
}