break up library, move bots to their own repositories

This commit is contained in:
JB
2026-02-12 21:05:15 -05:00
parent 415aa3dbfe
commit cb39431a11
289 changed files with 1931 additions and 6235 deletions

View File

@@ -0,0 +1,59 @@
{
"name": "@star-kitten/eve-discord",
"version": "0.0.1",
"description": "Star Kitten EVE Discord Library.",
"type": "module",
"license": "MIT",
"homepage": "https://git.f302.me/jb/star-kitten#readme",
"bugs": {
"url": "https://git.f302.me/jb/star-kitten/issues"
},
"repository": {
"type": "git",
"url": "git+https://git.f302.me/jb/star-kitten.git"
},
"author": "JB <j-b-3.deviate267@passmail.net>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index*.d.ts"
},
"./commands/*.js": {
"require": "./dist/commands/*.js",
"import": "./dist/commands/*.js",
"types": "./dist/types/commands/*.d.ts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@projectdysnomia/dysnomia": "github:projectdysnomia/dysnomia#dev"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"prettier-plugin-multiline-arrays": "^4.0.3",
"tsdown": "^0.14.2",
"typescript": "beta"
},
"dependencies": {
"@star-kitten/util": "link:@star-kitten/util",
"@star-kitten/eve": "link:@star-kitten/eve",
"@star-kitten/discord": "link:@star-kitten/discord"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"link": "bun link",
"test": "bun test",
"typecheck": "tsc --noEmit",
"release": "bumpp && npm publish"
}
}