Files
BoxBrain/package.json
Shinwoo PARK c047c5a23d
Some checks failed
CI / verify (push) Failing after 3s
feat: bootstrap BoxBrain framework
2026-05-14 19:30:34 +09:00

34 lines
702 B
JSON

{
"name": "boxbrain",
"version": "0.1.0",
"description": "Human-like persona harness framework powered by LLMs and IdentityDB.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "vitest run",
"check": "tsc --noEmit",
"build": "tsup src/index.ts --format esm --dts --sourcemap --clean"
},
"dependencies": {
"identitydb": "0.2.1"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "latest",
"typescript": "latest",
"vitest": "latest"
},
"trustedDependencies": [
"esbuild"
],
"engines": {
"bun": ">=1.2.0"
}
}