-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "zimflow",
"displayName": "ZimFlow – AI Learning Without Internet.",
"version": "1.0.0",
"description": "Chrome extension for AI-powered learning and translation using Chrome's Built-in AI APIs - completely offline.",
"author": "Zico",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@plasmohq/messaging": "^0.7.1",
"@plasmohq/storage": "^1.11.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"katex": "^0.16.22",
"lucide-react": "^0.407.0",
"ollama": "^0.5.16",
"plasmo": "0.90.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "6.0.3",
"rehype-katex": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/dom-chromium-ai": "^0.0.7",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"prettier": "3.2.4",
"tailwindcss": "^3.4.4",
"typescript": "5.3.3"
},
"manifest": {
"host_permissions": [
"<all_urls>"
],
"permissions": [
"sidePanel",
"storage",
"scripting",
"activeTab",
"tabs",
"contextMenus"
],
"minimum_chrome_version": "128"
}
}