-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "syncmind",
"displayName": "SyncMind",
"version": "1.0.0",
"description": "Transfer compressed AI conversation context between Claude, ChatGPT, Gemini, and Perplexity.",
"author": "SyncMind",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@plasmohq/messaging": "^0.7.1",
"@plasmohq/storage": "^1.15.0",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"plasmo": "^0.89.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@types/chrome": "^0.0.278",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
},
"manifest": {
"manifest_version": 3,
"name": "SyncMind",
"short_name": "SyncMind",
"version": "1.0.0",
"description": "Transfer compressed AI conversation context between AI platforms.",
"permissions": ["activeTab", "storage", "scripting", "tabs", "sidePanel"],
"host_permissions": [
"https://claude.ai/*",
"https://chatgpt.com/*",
"https://gemini.google.com/*",
"https://www.perplexity.ai/*",
"https://perplexity.ai/*",
"https://api.openai.com/*",
"https://api.groq.com/*",
"https://generativelanguage.googleapis.com/*",
"https://openrouter.ai/*"
],
"commands": {
"open-syncmind": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Open SyncMind"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"options_page": "options.html",
"action": {
"default_title": "SyncMind",
"default_popup": "popup.html"
}
}
}