Files
BoxBrain/package.json
2026-05-16 22:36:46 +09:00

66 lines
1.5 KiB
JSON

{
"name": "boxbrain",
"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": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"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",
"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"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "latest",
"typescript": "latest",
"vitest": "latest"
},
"trustedDependencies": [
"esbuild"
],
"engines": {
"bun": ">=1.2.0"
}
}