-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.38 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
{
"name": "recall",
"displayName": "ReCall",
"version": "1.0.0",
"description": "A Chrome extension that builds a dynamic knowledge graph from your browsing history",
"author": "jaehyeong.park@outook.com",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@hookform/resolvers": "^4.1.3",
"@plasmohq/storage": "^1.11.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.2",
"@types/d3": "^7.4.3",
"@xyflow/react": "^12.4.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"lucide-react": "^0.407.0",
"plasmo": "0.90.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.54.2",
"react-markdown": "^10.1.0",
"reactflow": "^11.10.4",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2",
"zustand": "^4.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@tailwindcss/typography": "^0.5.16",
"@types/chrome": "0.0.258",
"@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": [
"https://*/*"
],
"permissions": [
"storage",
"history",
"tabs",
"scripting",
"unlimitedStorage"
],
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"service_worker": "background.ts"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"~content.ts"
]
}
]
},
"pnpm": {
"ignoredBuiltDependencies": [
"@swc/core",
"esbuild",
"lmdb",
"msgpackr-extract",
"sharp"
]
}
}