60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "@waggle/hive-mind-wiki-compiler",
|
|
"version": "0.1.0",
|
|
"description": "Compile memory frames and knowledge graph entities into interlinked wiki pages via LLM synthesis",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "tsc --build --clean",
|
|
"test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/hive-mind-wiki-compiler/src"
|
|
},
|
|
"dependencies": {
|
|
"@waggle/hive-mind-core": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"@anthropic-ai/sdk": "^0.78.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@anthropic-ai/sdk": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@anthropic-ai/sdk": "^0.78.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/marolinik/waggle-os.git",
|
|
"directory": "packages/hive-mind-wiki-compiler"
|
|
},
|
|
"homepage": "https://github.com/marolinik/waggle-os/tree/main/packages/hive-mind-wiki-compiler#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/marolinik/waggle-os/issues"
|
|
},
|
|
"author": "Egzakta Group d.o.o. <hello@egzakta.com> (https://egzakta.com)",
|
|
"keywords": [
|
|
"wiki",
|
|
"memory",
|
|
"knowledge-graph",
|
|
"llm",
|
|
"ai",
|
|
"synthesis",
|
|
"hive-mind"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"types": "dist/index.d.ts"
|
|
}
|