ci: package publish ready

This commit is contained in:
2026-05-16 22:36:46 +09:00
parent 49f75afcf4
commit 5d489bc875
3 changed files with 102 additions and 4 deletions

View File

@@ -1,21 +1,51 @@
{
"name": "boxbrain",
"version": "0.1.0",
"version": "0.1.5",
"description": "Human-like persona harness framework powered by LLMs and IdentityDB.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"README.md"
],
"sideEffects": false,
"keywords": [
"llm",
"persona",
"memory",
"identitydb",
"agent"
],
"repository": {
"type": "git",
"url": "git+https://git.psw.kr/p-sw/BoxBrain.git"
},
"bugs": {
"url": "https://git.psw.kr/p-sw/BoxBrain/issues"
},
"homepage": "https://git.psw.kr/p-sw/BoxBrain",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"check": "tsc --noEmit",
"build": "tsup src/index.ts --format esm --dts --sourcemap --clean",
"prepare": "bun run build"
"clean": "rm -rf dist",
"pack:check": "bun scripts/check-package.mjs",
"prepack": "bun run build && bun run pack:check",
"prepublishOnly": "bun run check && bun run test && bun run build && bun run pack:check"
},
"dependencies": {
"identitydb": "0.2.1"