-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.44 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.44 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
{
"name": "vision-dashboard",
"displayName": "Vision Dashboard - Mindful Productivity Hub",
"version": "1.0.0",
"description": "Supercharge your focus with a new tab designed to eliminate distractions and amplify your productivity potential.",
"author": "simpleneeraj",
"license": "MIT",
"scripts": {
"start": "next start",
"dev:next": "next dev",
"build:next": "next build",
"dev": "plasmo dev",
"package": "plasmo package",
"hoist": "plasmo build --hoist",
"build": "plasmo build",
"build:no-minify": "plasmo build --no-minify",
"build:source-maps": "plasmo build --source-maps",
"build:zip": "plasmo build --zip",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:firefox:v2": "plasmo build --target=firefox-mv2",
"build:firefox:v3": "plasmo build --target=firefox-mv3",
"build:edge": "plasmo build --target=edge-mv3",
"build:brave": "plasmo build --target=brave-mv3",
"build:opera": "plasmo build --target=opera-mv3",
"build:safari": "plasmo build --target=safari-mv3"
},
"dependencies": {
"@heroui/calendar": "^2.2.27",
"@heroui/react": "^2.8.5",
"@iconify/react": "^6.0.2",
"@plasmohq/messaging": "^0.7.2",
"@plasmohq/storage": "^1.15.0",
"@supabase/supabase-js": "^2.79.0",
"@tailwindcss/typography": "^0.5.19",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"immer": "^10.2.0",
"lodash": "^4.17.21",
"motion": "^12.23.24",
"next": "16.0.10",
"next-themes": "^0.4.6",
"plasmo": "0.90.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.66.0",
"react-hotkeys-hook": "^5.2.1",
"react-router": "^7.9.5",
"rough-notation": "^0.5.1",
"swr": "^2.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@types/chrome": "0.1.27",
"@types/lodash": "^4.17.20",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"prettier": "3.6.2",
"tailwindcss": "3",
"typescript": "5.9.3"
},
"manifest": {
"permissions": [
"storage",
"bookmarks",
"history",
"tts",
"activeTab",
"scripting",
"downloads",
"tabs"
],
"host_permissions": [
"https://parsefiles.back4app.com/*",
"https://cdn.jsdelivr.net/gh/monarchelite/*",
"<all_urls>"
]
}
}