-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "wx-kit",
"private": true,
"version": "0.2.1",
"description": "微信百宝箱 - 第一阶段:文章下载器",
"license": "Apache-2.0",
"author": "monkeychen",
"homepage": "https://github.com/monkeychen/wx-kit",
"main": "dist-electron/main.js",
"type": "commonjs",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"typecheck": "tsc --noEmit -p tsconfig.json",
"package:mac": "vite build && electron-builder --mac",
"package:win": "vite build && electron-builder --win",
"package": "vite build && electron-builder --mac --win",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vite build && node tests/e2e/gui.e2e.mjs",
"lint": "eslint .",
"cli": "electron . "
},
"dependencies": {
"@ant-design/icons": "^6.2.5",
"antd": "^6.4.3",
"axios": "^1.7.0",
"cheerio": "^1.0.0",
"commander": "^12.1.0",
"react-markdown": "^9.1.0",
"react-router-dom": "^7.17.0",
"remark-gfm": "^4.0.1",
"turndown": "^7.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.5.0",
"electron": "^42.3.3",
"electron-builder": "^26.15.2",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.6.0",
"playwright": "^1.60.0",
"postcss": "^8.5.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.19",
"typescript": "^5.5.0",
"typescript-eslint": "^8.60.1",
"vite": "^6.4.3",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^3.2.6"
},
"build": {
"appId": "com.wxkit.app",
"productName": "wx-kit",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist-electron/**/*",
"dist/**/*"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"category": "public.app-category.productivity",
"icon": "build/icon.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"allowScripts": {
"electron@42.3.3": true
}
}