@lov3kaizen/agentsea-embeddings 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ import {
2
+ BaseStore,
3
+ ChromaStore,
4
+ MemoryStore,
5
+ PineconeStore,
6
+ QdrantStore,
7
+ createChromaStore,
8
+ createMemoryStore,
9
+ createPineconeStore,
10
+ createQdrantStore,
11
+ createStore
12
+ } from "../chunk-TER262ST.mjs";
13
+ import "../chunk-3KM32UQK.mjs";
14
+ import "../chunk-QAITLJ2E.mjs";
15
+ export {
16
+ BaseStore,
17
+ ChromaStore,
18
+ MemoryStore,
19
+ PineconeStore,
20
+ QdrantStore,
21
+ createChromaStore,
22
+ createMemoryStore,
23
+ createPineconeStore,
24
+ createQdrantStore,
25
+ createStore
26
+ };
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@lov3kaizen/agentsea-embeddings",
3
+ "version": "0.5.1",
4
+ "description": "Vector embedding lifecycle management toolkit for Node.js - versioning, caching, chunking, drift detection, and migration",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./chunking": {
15
+ "types": "./dist/chunking/index.d.ts",
16
+ "import": "./dist/chunking/index.mjs",
17
+ "require": "./dist/chunking/index.js"
18
+ },
19
+ "./caching": {
20
+ "types": "./dist/caching/index.d.ts",
21
+ "import": "./dist/caching/index.mjs",
22
+ "require": "./dist/caching/index.js"
23
+ },
24
+ "./stores": {
25
+ "types": "./dist/stores/index.d.ts",
26
+ "import": "./dist/stores/index.mjs",
27
+ "require": "./dist/stores/index.js"
28
+ },
29
+ "./providers": {
30
+ "types": "./dist/providers/index.d.ts",
31
+ "import": "./dist/providers/index.mjs",
32
+ "require": "./dist/providers/index.js"
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md"
38
+ ],
39
+ "keywords": [
40
+ "embeddings",
41
+ "vector",
42
+ "rag",
43
+ "chunking",
44
+ "caching",
45
+ "openai",
46
+ "cohere",
47
+ "pinecone",
48
+ "weaviate",
49
+ "chroma",
50
+ "llm",
51
+ "ai",
52
+ "machine-learning",
53
+ "nlp"
54
+ ],
55
+ "author": "lov3kaizen",
56
+ "license": "MIT",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "https://github.com/lov3kaizen/agentsea.git",
60
+ "directory": "packages/embeddings"
61
+ },
62
+ "dependencies": {
63
+ "eventemitter3": "^5.0.0",
64
+ "lru-cache": "^10.0.0",
65
+ "nanoid": "^5.0.0"
66
+ },
67
+ "devDependencies": {
68
+ "@types/better-sqlite3": "^7.6.0",
69
+ "@types/node": "^20.0.0",
70
+ "tsup": "^8.0.0",
71
+ "typescript": "^5.3.0",
72
+ "vitest": "^1.0.0"
73
+ },
74
+ "peerDependencies": {
75
+ "@lov3kaizen/agentsea-core": ">=0.5.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "@lov3kaizen/agentsea-core": {
79
+ "optional": true
80
+ }
81
+ },
82
+ "optionalDependencies": {
83
+ "ioredis": "^5.3.0",
84
+ "better-sqlite3": "^9.2.0",
85
+ "@pinecone-database/pinecone": "^2.0.0",
86
+ "weaviate-ts-client": "^2.0.0",
87
+ "chromadb": "^1.7.0",
88
+ "@qdrant/js-client-rest": "^1.7.0"
89
+ },
90
+ "engines": {
91
+ "node": ">=18.0.0"
92
+ },
93
+ "scripts": {
94
+ "build": "tsup src/index.ts src/chunking/index.ts src/caching/index.ts src/stores/index.ts src/providers/index.ts --format cjs,esm --dts --clean --external ioredis --external better-sqlite3 --external chromadb --external @pinecone-database/pinecone --external @qdrant/js-client-rest --external weaviate-ts-client --external cohere-ai --external ollama",
95
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
96
+ "test": "vitest run",
97
+ "test:watch": "vitest",
98
+ "test:coverage": "vitest run --coverage",
99
+ "lint": "eslint src --ext .ts",
100
+ "typecheck": "tsc --noEmit"
101
+ }
102
+ }