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,74 @@
{
"name": "@star-kitten/discord",
"version": "0.0.1",
"description": "Star Kitten 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": {
"require": "./dist/commands/index.js",
"import": "./dist/commands/index.js",
"types": "./dist/types/commands/index.d.ts"
},
"./components": {
"types": "./dist/types/components/index.d.ts",
"require": "./dist/components/index.js",
"import": "./dist/components/index.js"
},
"./pages": {
"require": "./dist/pages/index.js",
"import": "./dist/pages/index.js",
"types": "./dist/types/pages/index.d.ts"
},
"./common": {
"require": "./dist/common/index.js",
"import": "./dist/common/index.js"
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/lodash": "^4.17.20",
"@vitest/coverage-v8": "^3.2.4",
"bumpp": "^10.1.0",
"prettier-plugin-multiline-arrays": "^4.0.3",
"tsdown": "^0.14.2",
"typescript": "beta"
},
"dependencies": {
"@star-kitten/util": "link:@star-kitten/util",
"@projectdysnomia/dysnomia": "github:projectdysnomia/dysnomia#dev",
"date-fns": "^4.1.0",
"fp-filters": "^0.5.4",
"lodash": "^4.17.21"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"link": "bun link",
"test": "bun test",
"typecheck": "tsc --noEmit",
"release": "bumpp && npm publish"
}
}