-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2 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
{
"name": "kitfoxmarkdown-electron",
"version": "1.0.0",
"description": "Markdown文件链接转换工具 - Electron版本",
"main": "main.js",
"scripts": {
"dev": "concurrently \"npm run dev:react\" \"wait-on http://localhost:3000 && npm run electron\"",
"dev:react": "react-scripts start",
"dev:electron": "wait-on http://localhost:3000 && electron .",
"build": "react-scripts build",
"build:electron": "electron-builder",
"electron": "electron .",
"start": "npm run build && electron .",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"keywords": [
"markdown",
"oss",
"electron",
"ant-design"
],
"author": "KitfoxMarkdown Team",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.2.6",
"antd": "^5.12.8",
"axios": "^1.6.5",
"ali-oss": "^6.20.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"marked": "^11.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-scripts": "5.0.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.kitfoxmarkdown.electron",
"productName": "KitfoxMarkdown",
"directories": {
"output": "dist-electron"
},
"files": [
"build/**/*",
"main.js",
"preload.js",
"server/**/*",
"node_modules/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}