- Replaced real names/companies with generic placeholders - Tests: Vainplex GmbH → Acme GmbH - README: Sebastian/Mondo Gate → Alex/Acme Corp - Author: OpenClaw Community - License: OpenClaw Contributors
36 lines
899 B
JSON
36 lines
899 B
JSON
{
|
|
"name": "@vainplex/openclaw-knowledge-engine",
|
|
"version": "0.1.1",
|
|
"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": "OpenClaw Community",
|
|
"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"
|
|
}
|