Files
BoxBrain/package.json
Shinwoo PARK c27c6b4e3c
All checks were successful
CI / verify (push) Successful in 14s
build: support git dependency installs
2026-05-14 20:56:43 +09:00

35 lines
734 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",
"prepare": "bun run build"
},
"dependencies": {
"identitydb": "0.2.1"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "latest",
"typescript": "latest",
"vitest": "latest"
},
"trustedDependencies": [
"esbuild"
],
"engines": {
"bun": ">=1.2.0"
}
}