feat(OBC-001): initialize strict TS plugin project with lint and tests

This commit is contained in:
2026-03-06 08:14:10 -06:00
parent 0c9bcd4057
commit dec39006b1
8 changed files with 8445 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "openclaw-openbrain-context",
"version": "0.0.1",
"description": "OpenBrain-backed ContextEngine plugin for OpenClaw",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"README.md"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"peerDependencies": {
"openclaw": ">=2026.3.2"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/node": "^22.15.3",
"eslint": "^9.25.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^2.1.8"
}
}