-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
92 lines (92 loc) · 2.59 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
89
90
91
92
{
"name": "bookmarksAI",
"displayName": "bookmarksAI",
"version": "0.0.2",
"description": "Auto tag bookmarks with AI",
"author": "[email protected]",
"scripts": {
"dev": "run-p dev:*",
"dev:plasmo": "plasmo dev",
"dev:next": "next dev --port 1947",
"build": "plasmo build",
"start:next": "next start",
"build:next": "next build",
"package": "plasmo package"
},
"dependencies": {
"@csstools/convert-colors": "^2.0.0",
"@langchain/core": "^0.2.16",
"@langchain/openai": "^0.2.2",
"@next/env": "^14.2.5",
"@plasmohq/messaging": "0.6.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@vercel/analytics": "^1.3.1",
"@visactor/react-vchart": "^1.11.9",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.7",
"idb-keyval": "3.0.0",
"jsonrepair": "^3.8.0",
"langchain": "^0.2.10",
"lodash-es": "^4.17.21",
"lucide-react": "^0.408.0",
"markmap-common": "^0.17.0",
"markmap-lib": "^0.17.0",
"markmap-view": "^0.17.0",
"next": "14.1.0",
"next-themes": "^0.3.0",
"p-limit": "^6.1.0",
"p-retry": "^6.2.0",
"plasmo": "0.88.0",
"randomcolor": "^0.6.2",
"react": "18.2.0",
"react-accessible-treeview": "^2.9.1",
"react-day-picker": "^9.0.0",
"react-dom": "18.2.0",
"react-icon-cloud": "^4.1.4",
"react-intersection-observer": "^9.13.0",
"react-scroll-parallax": "^3.4.5",
"react-virtual": "^2.10.4",
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"webextension-polyfill": "^0.12.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@next/bundle-analyzer": "^14.2.5",
"@types/chrome": "0.0.258",
"@types/lodash-es": "^4.17.12",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"postcss-import": "^15.1.0",
"prettier": "3.2.4",
"tailwindcss": "^3.3.6",
"typescript": "5.3.3"
},
"manifest": {
"permissions": [
"bookmarks",
"scripting"
],
"host_permissions": [
"https://*/*"
]
}
}