60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name": "ruvector-extensions",
|
|
"version": "0.1.0",
|
|
"description": "Advanced features for ruvector: embeddings, UI, exports, temporal tracking, and persistence",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "node --test tests/*.test.js",
|
|
"example:ui": "tsx src/examples/ui-example.ts"
|
|
},
|
|
"keywords": [
|
|
"ruvector",
|
|
"embeddings",
|
|
"openai",
|
|
"cohere",
|
|
"graph-visualization",
|
|
"neo4j",
|
|
"temporal-tracking",
|
|
"persistence"
|
|
],
|
|
"author": "ruv.io Team <info@ruv.io> (https://ruv.io)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector.git",
|
|
"directory": "npm/packages/ruvector-extensions"
|
|
},
|
|
"dependencies": {
|
|
"ruvector": "^0.1.20",
|
|
"@anthropic-ai/sdk": "^0.24.0",
|
|
"express": "^4.18.2",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"peerDependencies": {
|
|
"openai": "^4.0.0",
|
|
"cohere-ai": "^7.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openai": {
|
|
"optional": true
|
|
},
|
|
"cohere-ai": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.5",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ws": "^8.5.10",
|
|
"typescript": "^5.3.3",
|
|
"tsx": "^4.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|