feat: bootstrap BoxBrain framework
Some checks failed
CI / verify (push) Failing after 3s

This commit is contained in:
2026-05-14 19:30:34 +09:00
commit c047c5a23d
16 changed files with 1846 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"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"
}
}