-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "@pionxzh/chatgpt-exporter",
"type": "module",
"version": "2.25.0",
"private": true,
"packageManager": "[email protected]",
"title": "ChatGPT Exporter",
"title:zh-CN": "ChatGPT Exporter",
"title:zh-TW": "ChatGPT Exporter",
"description": "Easily export the whole ChatGPT conversation history for further analysis or sharing.",
"description:zh-CN": "轻松导出 ChatGPT 聊天记录,以便进一步分析或分享。",
"description:zh-TW": "輕鬆匯出 ChatGPT 聊天紀錄,以便進一步分析或分享。",
"author": "pionxzh",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-hover-card": "^1.0.5",
"eventemitter3": "^5.0.1",
"hast-util-to-html": "^8.0.4",
"html2canvas": "^1.4.1",
"i18next": "^22.5.1",
"jszip": "3.9.1",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.3.1",
"mdast-util-frontmatter": "^1.0.1",
"mdast-util-gfm": "^2.0.2",
"mdast-util-to-hast": "^12.3.0",
"mdast-util-to-markdown": "^1.5.0",
"micromark-extension-gfm": "^2.0.3",
"preact": "^10.17.1",
"react-i18next": "^12.3.1",
"sanitize-filename": "^1.6.3",
"sentinel-js": "^0.0.7",
"urlcat": "^2.0.4",
"vite-plugin-monkey": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@pionxzh/eslint-config": "^1.0.1",
"@preact/preset-vite": "^2.8.3",
"@types/mdast": "^3.0.15",
"@types/node": "^20.11.20",
"@types/unist": "^2.0.10",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"typescript": "^5.5.2",
"vite": "^5.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm exec eslint"
}
}