Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ragpipe/plugin-sqlite-vec

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ragpipe/plugin-sqlite-vec - npm Package Compare versions

Comparing version
0.1.0-alpha.2
to
0.1.0
+66
-56
package.json
{
"name": "@ragpipe/plugin-sqlite-vec",
"version": "0.1.0-alpha.2",
"description": "SQLite local vector store plugin for ragpipe",
"type": "module",
"license": "MIT",
"author": {
"name": "yungblud",
"url": "https://github.com/yungblud"
},
"repository": {
"type": "git",
"url": "https://github.com/yungblud/ragpipe",
"directory": "packages/plugin-sqlite-vec"
},
"bugs": {
"url": "https://github.com/yungblud/ragpipe/issues"
},
"homepage": "https://github.com/yungblud/ragpipe#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": ["ragpipe", "rag", "sqlite", "local", "vector-store", "plugin"],
"peerDependencies": {
"ragpipe": ">=0.8.0"
},
"dependencies": {
"better-sqlite3": "^11.10.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"ragpipe": "workspace:*",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}
"name": "@ragpipe/plugin-sqlite-vec",
"version": "0.1.0",
"description": "SQLite local vector store plugin for ragpipe",
"type": "module",
"license": "MIT",
"author": {
"name": "yungblud",
"url": "https://github.com/yungblud"
},
"repository": {
"type": "git",
"url": "https://github.com/yungblud/ragpipe",
"directory": "packages/plugin-sqlite-vec"
},
"bugs": {
"url": "https://github.com/yungblud/ragpipe/issues"
},
"homepage": "https://github.com/yungblud/ragpipe#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"ragpipe",
"rag",
"sqlite",
"local",
"vector-store",
"plugin"
],
"peerDependencies": {
"ragpipe": ">=0.9.0"
},
"dependencies": {
"better-sqlite3": "^11.10.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"ragpipe": "0.9.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
}
}