embrix 1.0.0

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,67 @@
1
+ {
2
+ "name": "embrix",
3
+ "version": "1.0.0",
4
+ "description": "Production-ready local text embeddings using @xenova/transformers. Supports MiniLM and BGE models with zero external dependencies.",
5
+ "author": "",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "embeddings",
9
+ "text-embeddings",
10
+ "transformers",
11
+ "minilm",
12
+ "bge",
13
+ "local-embeddings",
14
+ "semantic-search",
15
+ "vector",
16
+ "nlp",
17
+ "machine-learning"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": ""
22
+ },
23
+ "bugs": {
24
+ "url": ""
25
+ },
26
+ "homepage": "",
27
+ "type": "module",
28
+ "main": "./dist/index.cjs",
29
+ "module": "./dist/index.js",
30
+ "types": "./dist/index.d.ts",
31
+ "exports": {
32
+ ".": {
33
+ "import": {
34
+ "types": "./dist/index.d.ts",
35
+ "default": "./dist/index.js"
36
+ },
37
+ "require": {
38
+ "types": "./dist/index.d.cts",
39
+ "default": "./dist/index.cjs"
40
+ }
41
+ }
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "README.md"
46
+ ],
47
+ "scripts": {
48
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean",
49
+ "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
50
+ "benchmark": "npx tsx scripts/benchmark.ts",
51
+ "example": "npx tsx examples/usage.ts",
52
+ "prepublishOnly": "npm run build"
53
+ },
54
+ "dependencies": {
55
+ "@xenova/transformers": "^2.17.2"
56
+ },
57
+ "devDependencies": {
58
+ "@types/node": "^25.3.0",
59
+ "tsup": "^8.5.1",
60
+ "typescript": "^5.9.3",
61
+ "tsx": "^4.7.0"
62
+ },
63
+ "engines": {
64
+ "node": ">=18.0.0"
65
+ },
66
+ "sideEffects": false
67
+ }