mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-24 05:49:57 +00:00
98 lines
2.9 KiB
JSON
98 lines
2.9 KiB
JSON
{
|
|
"name": "vectordb",
|
|
"version": "0.4.12",
|
|
"description": " Serverless, low-latency vector database for AI applications",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"tsc": "tsc -b",
|
|
"build": "npm run tsc && cargo-cp-artifact --artifact cdylib lancedb-node index.node -- cargo build --message-format=json",
|
|
"build-release": "npm run build -- --release",
|
|
"test": "npm run tsc && mocha -recursive dist/test",
|
|
"integration-test": "npm run tsc && mocha -recursive dist/integration_test",
|
|
"lint": "eslint native.js src --ext .js,.ts",
|
|
"clean": "rm -rf node_modules *.node dist/",
|
|
"pack-build": "neon pack-build",
|
|
"check-npm": "printenv && which node && which npm && npm --version"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lancedb/lancedb.git"
|
|
},
|
|
"homepage": "https://lancedb.github.io/lancedb/",
|
|
"bugs": {
|
|
"url": "https://github.com/lancedb/lancedb/issues"
|
|
},
|
|
"keywords": [
|
|
"data-format",
|
|
"data-science",
|
|
"machine-learning",
|
|
"data-analytics"
|
|
],
|
|
"author": "Lance Devs",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@neon-rs/cli": "^0.0.160",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/chai-as-promised": "^7.1.5",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^18.16.2",
|
|
"@types/sinon": "^10.0.15",
|
|
"@types/temp": "^0.9.1",
|
|
"@types/uuid": "^9.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
"apache-arrow-old": "npm:apache-arrow@13.0.0",
|
|
"cargo-cp-artifact": "^0.1",
|
|
"chai": "^4.3.7",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-standard-with-typescript": "^34.0.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-n": "^15.7.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"mocha": "^10.2.0",
|
|
"openai": "^4.24.1",
|
|
"sinon": "^15.1.0",
|
|
"temp": "^0.9.4",
|
|
"ts-node": "^10.9.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typedoc": "^0.24.7",
|
|
"typedoc-plugin-markdown": "^3.15.3",
|
|
"typescript": "*",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@neon-rs/load": "^0.0.74",
|
|
"axios": "^1.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@apache-arrow/ts": "^14.0.2",
|
|
"apache-arrow": "^14.0.2"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
],
|
|
"neon": {
|
|
"targets": {
|
|
"x86_64-apple-darwin": "@lancedb/vectordb-darwin-x64",
|
|
"aarch64-apple-darwin": "@lancedb/vectordb-darwin-arm64",
|
|
"x86_64-unknown-linux-gnu": "@lancedb/vectordb-linux-x64-gnu",
|
|
"aarch64-unknown-linux-gnu": "@lancedb/vectordb-linux-arm64-gnu",
|
|
"x86_64-pc-windows-msvc": "@lancedb/vectordb-win32-x64-msvc"
|
|
}
|
|
},
|
|
"optionalDependencies": {
|
|
"@lancedb/vectordb-darwin-arm64": "0.4.12",
|
|
"@lancedb/vectordb-darwin-x64": "0.4.12",
|
|
"@lancedb/vectordb-linux-arm64-gnu": "0.4.12",
|
|
"@lancedb/vectordb-linux-x64-gnu": "0.4.12",
|
|
"@lancedb/vectordb-win32-x64-msvc": "0.4.12"
|
|
}
|
|
}
|