mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-28 09:53:36 +00:00
Package Configuration: - ✅ Linux x64: Complete with binary and passing tests - ✅ macOS x64 (Intel): Package structure ready, awaiting binary - ✅ macOS ARM64 (Apple Silicon): Package structure ready, awaiting binary - 🔧 Updated package.json files for all platforms - 🔧 Created module loaders (index.js) for native bindings - 🔧 Added README documentation for each platform Testing: - ✅ Created comprehensive test suite (test-package.cjs) - ✅ All 4 test suites passing on linux-x64-gnu: - File structure verification - Native module loading - Database instance creation - Basic CRUD operations (insert, search, count, delete) Documentation: - 📚 docs/NPM_PUBLISHING.md - Complete publishing guide - 📚 docs/NPM_READY_STATUS.md - Linux package verification - 📚 docs/MACOS_PACKAGES_SETUP.md - macOS setup details - 📚 docs/ALL_PACKAGES_STATUS.md - All packages status - 📚 docs/CURRENT_STATUS.md - Overall project status Changes: - npm/core/platforms/linux-x64-gnu/: Binary + config + tests ✅ - npm/core/platforms/darwin-x64/: Config + loader + README ✅ - npm/core/platforms/darwin-arm64/: Config + loader + README ✅ - npm/core/test-package.cjs: Automated testing suite ✅ Next Steps: - GitHub Actions will build darwin-x64 and darwin-arm64 binaries - After builds complete: test, verify, and publish to npm 🚀 This commit triggers multi-platform builds via GitHub Actions
69 lines
1.5 KiB
JSON
69 lines
1.5 KiB
JSON
{
|
|
"name": "@ruvector/core",
|
|
"version": "0.1.1",
|
|
"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": "tsc",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"optionalDependencies": {
|
|
"@ruvector/core-darwin-arm64": "0.1.1",
|
|
"@ruvector/core-darwin-x64": "0.1.1",
|
|
"@ruvector/core-linux-arm64-gnu": "0.1.1",
|
|
"@ruvector/core-linux-x64-gnu": "0.1.1",
|
|
"@ruvector/core-win32-x64-msvc": "0.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.25",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|