-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 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
{
"name": "aichatbackup",
"version": "0.1.0",
"description": "Export your AI chat history from ChatGPT, Claude, Gemini & Grok and continue conversations anywhere.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"gen-icons": "node scripts/gen-icons.mjs",
"zip": "node scripts/zip.mjs",
"build:zip": "npm run build && npm run zip"
},
"keywords": [
"chrome-extension",
"ai",
"chat",
"migration",
"chatgpt",
"claude",
"gemini",
"grok",
"export",
"backup"
],
"author": "HackLM contributors",
"license": "GPL-3.0",
"homepage": "https://hacklm.dev/aichatbackup",
"repository": {
"type": "git",
"url": "https://github.com/hacklmdev/aichatbackup.git"
},
"bugs": {
"url": "https://github.com/hacklmdev/aichatbackup/issues"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.33",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@types/chrome": "^0.1.37",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"lucide-react": "^0.575.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
}
}