-
-
Notifications
You must be signed in to change notification settings - Fork 768
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.61 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "pageassist",
"displayName": "Page Assist - A Web UI for Local AI Models",
"version": "1.0.9",
"description": "Use your locally running AI models to assist you in your web browsing.",
"author": "n4ze3m",
"scripts": {
"dev": "cross-env TARGET=chrome wxt",
"dev:firefox": "cross-env TARGET=firefox wxt -b firefox",
"dev:edge": "cross-env TARGET=chrome wxt -b edge",
"build": "bun build:chrome; bun build:firefox; bun build:edge",
"build:chrome": "cross-env TARGET=chrome wxt build",
"build:firefox": "cross-env TARGET=firefox wxt build -b firefox",
"build:edge": "cross-env TARGET=chrome wxt build -b edge",
"zip": "cross-env TARGET=chrome wxt zip",
"zip:firefox": "cross-env TARGET=firefox wxt zip -b firefox",
"compile": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"page-action:dev": "cd extensions/page-action && bun run dev",
"page-action:build": "cd extensions/page-action && bun run build",
"postinstall": "wxt prepare"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@ant-design/cssinjs": "^1.18.4",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@langchain/community": "^1.1.22",
"@langchain/core": "^1.1.31",
"@langchain/openai": "^1.2.12",
"@mantine/form": "^7.5.0",
"@mantine/hooks": "^7.5.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"@plasmohq/storage": "^1.9.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^5.17.19",
"@tanstack/react-virtual": "^3.13.6",
"@vitejs/plugin-react": "^4.2.1",
"antd": "^5.13.3",
"axios": "^1.6.7",
"caniuse-lite": "^1.0.30001716",
"cheerio": "^1.0.0-rc.12",
"d3-dsv": "2",
"dayjs": "^1.11.10",
"defuddle": "^0.18.1",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"html-to-text": "^9.0.5",
"html2canvas": "^1.4.1",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.0",
"langchain": "^1.2.30",
"lucide-react": "^0.350.0",
"mammoth": "^1.7.2",
"marked": "^15.0.12",
"mermaid": "^11.4.1",
"ml-distance": "^4.0.1",
"ollama": "^0.5.17",
"openai": "^4.95.1",
"pa-tesseract.js": "^5.1.1",
"pdfjs-dist": "4.0.379",
"property-information": "^6.4.1",
"pubsub-js": "^1.9.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^14.1.0",
"react-icons": "^5.2.1",
"react-markdown": "8.0.0",
"react-router-dom": "6.10.0",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.4",
"rehype-katex": "6.0.3",
"rehype-mathjax": "4.0.3",
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
"turndown": "^7.1.3",
"unist-util-visit": "^5.0.0",
"yt-transcript": "^0.0.2",
"zustand": "^4.5.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@types/chrome": "^0.0.280",
"@types/d3-dsv": "^3.0.7",
"@types/html-to-text": "^9.0.4",
"@types/node": "20.11.9",
"@types/pubsub-js": "^1.8.6",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/react-speech-recognition": "^3.9.5",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/turndown": "^5.0.4",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"postcss": "^8.4.33",
"prettier": "3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3",
"vite-plugin-top-level-await": "^1.4.1",
"vitepress": "^1.6.3",
"wxt": "^0.19.6"
},
"resolutions": {
"@langchain/core": "^1.1.31"
}
}