Files
waggle-os/packages/hive-mind-wiki-compiler/package.json
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

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.24.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
}
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.24.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"
}