54 lines
1.0 KiB
JSON
54 lines
1.0 KiB
JSON
{
|
|
"name": "boxbrain",
|
|
"version": "0.1.1",
|
|
"description": "IdentityDB-backed framework for synthetic human-like personas and DM-style LLM harnesses.",
|
|
"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"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"check": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rm -rf dist coverage"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"persona",
|
|
"llm",
|
|
"memory",
|
|
"identitydb",
|
|
"simulation"
|
|
],
|
|
"dependencies": {
|
|
"identitydb": "0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"trustedDependencies": [
|
|
"better-sqlite3",
|
|
"esbuild"
|
|
]
|
|
}
|