-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 3.04 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
87
88
{
"name": "browser-ai-qa",
"version": "0.0.1",
"description": "A Chrome extension for question-answer over websites.",
"packageManager": "[email protected]",
"main": "src/index.ts",
"author": "Brace Sproul",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "tsc && vite build",
"clean": "rm -rf dist",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
"test:int": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
"test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.js --testTimeout 100000",
"format": "prettier --write .",
"lint": "eslint src",
"format:check": "prettier --check .",
"lint:all": "yarn lint & yarn lint:langgraph-json & yarn format:check"
},
"dependencies": {
"@assistant-ui/react": "^0.7.17",
"@assistant-ui/react-markdown": "^0.7.5",
"@assistant-ui/react-syntax-highlighter": "^0.7.4",
"@langchain/anthropic": "^0.3.9",
"@langchain/community": "^0.3.19",
"@langchain/core": "^0.3.22",
"@langchain/google-genai": "^0.1.6",
"@langchain/langgraph": "^0.2.31",
"@langchain/openai": "^0.3.16",
"@mendable/firecrawl-js": "^1.9.7",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@supabase/supabase-js": "^2.47.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"langchain": "^0.3.7",
"lucide-react": "^0.469.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.8",
"@types/chrome": "^0.0.254",
"@types/jest": "^29.5.14",
"@types/pg": "^8.11.10",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-instanceof": "^1.0.1",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.11"
}
}