forked from nanmenyu/inking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.95 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
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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "inking",
"version": "1.0.0",
"main": "electron/main.js",
"private": true,
"description": "墨迹写作, 深度、简洁、直观的文字创作工具",
"author": "nanmenyu <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"Vue3",
"electron-desktop"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"electron": "wait-on tcp:3000 && cross-env NODE_ENV=development electron .",
"electron:serve": "concurrently -k \"npm run dev\" \"npm run electron\"",
"electron:build": "vite build && electron-builder"
},
"build": {
"appId": "com.inking.app",
"productName": "inking",
"copyright": "Copyright © 2022 <nanmenyu>",
"publish": [
{
"provider": "generic",
"url": "http://localhost:8888/",
"channel": "latest"
}
],
"mac": {
"icon": "./inking-logo.ico",
"category": "public.app-category.productivity",
"artifactName": "${productName}_${version}.${ext}",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "./inking-logo.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./inking-logo.ico",
"uninstallerIcon": "./inking-logo.ico",
"installerHeaderIcon": "./inking-logo.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "inking"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
},
"devDependencies": {
"@arco-design/web-vue": "^2.16.2",
"@ckpack/vue-color": "^1.1.8",
"@vitejs/plugin-vue": "^2.0.0",
"concurrently": "^7.0.0",
"core-js": "^3.6.5",
"cropperjs": "^1.5.12",
"cross-env": "^7.0.3",
"dexie": "^3.2.0",
"echarts": "^5.2.2",
"electron": "^13.0.0",
"electron-builder": "^22.14.13",
"epubjs": "^0.3.71",
"html2pdf.js": "^0.10.1",
"pdfjs-dist": "^2.13.216",
"pinia": "^2.0.11",
"prosemirror-commands": "^1.2.1",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-model": "^1.16.1",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-schema-list": "^1.1.6",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.23.6",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"typescript": "^4.4.4",
"uuid": "^8.3.2",
"vite": "^2.7.2",
"vue": "^3.2.25",
"vue-router": "^4.0.12",
"vue-tsc": "^0.29.8",
"wait-on": "^6.0.0"
},
"dependencies": {
"axios": "^0.26.0",
"cheerio": "^1.0.0-rc.10",
"electron-updater": "^4.6.5",
"html-to-docx": "^1.3.2",
"jschardet": "^3.0.0"
}
}