- Full README with: what it does, quick start, config reference, architecture overview, extraction pipeline diagram, fact lifecycle, hook table, testing instructions, plugin suite roadmap - MIT License - Repository URL fixed in package.json
36 lines
889 B
JSON
36 lines
889 B
JSON
{
|
|
"name": "@vainplex/openclaw-knowledge-engine",
|
|
"version": "0.1.0",
|
|
"description": "An OpenClaw plugin for real-time and batch knowledge extraction from conversational data.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "tsx --test test/*.test.ts",
|
|
"lint": "eslint . --ext .ts",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"knowledge-extraction",
|
|
"nlp",
|
|
"entity-extraction"
|
|
],
|
|
"author": "Vainplex",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/alberthild/openclaw-knowledge-engine.git"
|
|
},
|
|
"openclaw": {
|
|
"id": "@vainplex/openclaw-knowledge-engine"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.24",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.3.3",
|
|
"tsx": "^4.7.1"
|
|
},
|
|
"type": "module"
|
|
}
|