- Add publishConfig with GitLab registry - Add publish script - Add _ meta config Generated with Claude Code
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "@transquinnftw/ml-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",
|
|
"publish": "pnpm publish --no-git-checks"
|
|
},
|
|
"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": "^8.57.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": {
|
|
"@transquinnftw:registry": "https://gitlab.com/api/v4/packages/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "gitlab",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|