@superlinked/sie-lancedb 0.1.10

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.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@superlinked/sie-lancedb",
3
+ "version": "0.1.10",
4
+ "description": "SIE embedding function and reranker for LanceDB",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "dependencies": {
20
+ "@superlinked/sie-sdk": "0.1.10"
21
+ },
22
+ "peerDependencies": {
23
+ "@lancedb/lancedb": ">=0.17.0"
24
+ },
25
+ "devDependencies": {
26
+ "@biomejs/biome": "^1.9.4",
27
+ "@lancedb/lancedb": "^0.17.0",
28
+ "apache-arrow": "^18.0.0",
29
+ "tsup": "^8.3.5",
30
+ "typescript": "^5.7.2",
31
+ "vitest": "^2.1.8"
32
+ },
33
+ "engines": {
34
+ "node": ">=22.0.0"
35
+ },
36
+ "keywords": [
37
+ "sie",
38
+ "embeddings",
39
+ "lancedb",
40
+ "lance",
41
+ "vector",
42
+ "database",
43
+ "reranker"
44
+ ],
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/superlinked/sie-internal.git",
49
+ "directory": "integrations/sie_ts_lancedb"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "scripts": {
55
+ "build": "tsup",
56
+ "dev": "tsup --watch",
57
+ "test": "vitest run",
58
+ "test:watch": "vitest",
59
+ "test:integration": "vitest run --config vitest.integration.config.ts",
60
+ "typecheck": "tsc --noEmit",
61
+ "lint": "biome check src tests",
62
+ "lint-fix": "biome check --write src tests"
63
+ }
64
+ }