34 lines
702 B
JSON
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"
|
|
}
|
|
}
|