-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.28 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.28 KB
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.31",
"scripts": {
"build": "nx run-many --t=build",
"deploy": "node scripts/publish-via-nx.js",
"example": "node scripts/run-example.js",
"knip:json": "knip --reporter json"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3.3.1",
"@inquirer/prompts": "^7.10.1",
"@npmcli/package-json": "^7.0.2",
"@nx/esbuild": "22.0.3",
"@nx/eslint": "22.0.3",
"@nx/eslint-plugin": "22.0.3",
"@nx/js": "22.0.3",
"@nx/node": "22.0.3",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.1",
"@swc/helpers": "~0.5.17",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"arg": "^5.0.2",
"esbuild": "^0.27.0",
"eslint": "~9.39.1",
"eslint-config-prettier": "^10.1.8",
"execa": "^9.6.0",
"husky": "^9.1.7",
"knip": "^5.69.1",
"nx": "22.0.3",
"prettier": "^3.6.2",
"simple-git": "^3.30.0",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.4"
},
"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"
]
}