agent-ml/knowledge/package.json
QuinnFTW 94dd80af85 🔧 migrate to @lilith namespace, update configs
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 01:34:24 -08:00

62 lines
1.4 KiB
JSON

{
"name": "@lilith/ml-agent-knowledge",
"version": "0.1.0",
"description": "Knowledge management and caching infrastructure for agent systems",
"author": "lilith",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"ioredis": "^5.3.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.3.0",
"vitest": "^2.1.0"
},
"files": [
"dist",
"src"
],
"keywords": [
"knowledge",
"cache",
"redis",
"document-cache",
"agent"
],
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}