Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
68
npm/core/package.json
Normal file
68
npm/core/package.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "@ruvector/core",
|
||||
"version": "0.1.17",
|
||||
"description": "High-performance Rust vector database for Node.js with HNSW indexing and SIMD optimizations",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.cjs",
|
||||
"types": "./dist/index.d.ts"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:esm && npm run build:cjs && npm run build:rename-cjs",
|
||||
"build:esm": "tsc --project tsconfig.json",
|
||||
"build:cjs": "tsc --project tsconfig.cjs.json",
|
||||
"build:rename-cjs": "mv dist-cjs/index.cjs.js dist/index.cjs && rm -rf dist-cjs",
|
||||
"prepublishOnly": "npm run build",
|
||||
"test": "node --test",
|
||||
"clean": "rm -rf dist dist-cjs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.19.25",
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@ruvector/attention": "^0.1.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"platforms",
|
||||
"native",
|
||||
"*.node",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"keywords": [
|
||||
"vector",
|
||||
"database",
|
||||
"embeddings",
|
||||
"similarity-search",
|
||||
"hnsw",
|
||||
"rust",
|
||||
"napi",
|
||||
"semantic-search",
|
||||
"machine-learning",
|
||||
"rag",
|
||||
"simd",
|
||||
"performance",
|
||||
"napi-rs"
|
||||
],
|
||||
"author": "rUv",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ruvnet/ruvector.git",
|
||||
"directory": "npm/core"
|
||||
},
|
||||
"homepage": "https://github.com/ruvnet/ruvector#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ruvnet/ruvector/issues"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user