-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 886 Bytes
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
{
"name": "langchain-chrome-extension",
"version": "1.0.0",
"description": "Chrome extension to chat about any webpage using LangChain and Gemini",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/post-build.js",
"preview": "vite preview"
},
"keywords": [
"chrome-extension",
"langchain",
"gemini",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/community": "^1.0.7",
"@langchain/core": "^1.1.4",
"@langchain/google-genai": "^2.0.4",
"@langchain/textsplitters": "^1.0.1",
"@mozilla/readability": "^0.6.0",
"dompurify": "^3.3.1",
"highlight.js": "^11.11.1",
"langchain": "^1.1.5",
"lucide": "^0.556.0",
"marked": "^17.0.1",
"turndown": "^7.2.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.2.1",
"vite": "^7.2.7"
}
}