-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
86 lines (86 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"type": "module",
"name": "@llm-tools/embedjs-source",
"description": "A NodeJS RAG framework to easily work with LLMs and custom datasets",
"author": "K V Adhityan",
"bugs": {
"url": "https://github.com/llm-tools/embedjs/issues"
},
"homepage": "https://github.com/llm-tools/embedjs#readme",
"version": "0.1.28",
"scripts": {
"build:esm": "nx run-many --t=build",
"build:cjs": "nx run-many --t=build-cjs && node scripts/move-cjs-to-dist.js",
"build:ci": "nx run-many --t=build",
"build:pipeline": "npm run build:esm && npm run build:cjs",
"deploy": "node scripts/publish-via-nx.js"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@inquirer/prompts": "^7.2.1",
"@npmcli/package-json": "^6.1.0",
"@nx/esbuild": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/js": "20.3.0",
"@nx/node": "20.3.0",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.4",
"@swc/helpers": "~0.5.15",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"arg": "^5.0.2",
"esbuild": "^0.19.12",
"eslint": "~9.17.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.5.2",
"husky": "^9.1.7",
"nx": "20.3.0",
"prettier": "^3.4.2",
"simple-git": "^3.27.0",
"tslib": "^2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.19.0"
},
"workspaces": [
"core/*",
"databases/*",
"loaders/*",
"models/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/llm-tools/embedjs.git"
},
"engines": {
"node": ">= 18.0.0"
},
"keywords": [
"ai",
"ml",
"llm",
"gpt",
"openai",
"anthropic",
"claude",
"qdrant",
"chatgpt",
"hugging-face",
"ollama",
"mistral",
"cohere",
"embedding",
"embeddings",
"openai",
"langchain",
"prompt",
"rag",
"pinecone",
"vertex-ai",
"mongodb",
"large-language-model"
]
}