-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
136 lines (136 loc) · 3.69 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "iyo-image-converter",
"version": "1.4.3",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:web\" \"wait-on http://localhost:8080 && npm run dev:nw\"",
"dev:nw": "run --x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"dev:web": "vue-cli-service serve",
"build": "npm run build:web && npm run build:nw",
"build:win": "npm run build:web && npm run build:nw-win",
"build:mac": "npm run build:web && npm run build:nw-mac",
"build:web": "vue-cli-service build",
"build:nw": "build --tasks win-x64,mac-x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"build:nw-win": "build --tasks win-x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"build:nw-mac": "build --tasks mac-x64 --mirror https://npm.taobao.org/mirrors/nwjs/ .",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\""
},
"main": "preload.html?env=dev",
"node-remote": "<all_urls>",
"window": {
"id": "iyo-preload",
"width": 256,
"height": 256,
"resizable": false,
"position": "center",
"frame": false,
"transparent": true,
"show_in_taskbar": false
},
"dependencies": {
"clone": "^2.1.2",
"core-js": "^3.8.3",
"element-plus": "^2.2.10",
"file-type": "^17.1.6",
"fs-extra": "^10.1.0",
"nwjs-dialog": "^1.0.6",
"sharp": "0.30.7",
"sharp-apng": "^0.1.5",
"sharp-bmp": "^0.1.5",
"sharp-gif2": "^0.1.3",
"sharp-ico": "^0.1.5",
"sharp-pdf": "^0.1.3",
"vue": "^3.2.13",
"vue-i18n": "^9.1.0",
"vxe-table": "^4.3.0-beta.3",
"vxe-table-plugin-element": "^3.0.5",
"xe-utils": "^3.5.6"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@intlify/vue-i18n-loader": "^3.0.0",
"@ssnangua/nwjs-builder-phoenix": "^1.15.5",
"@types/clone": "^2.1.1",
"@types/nw.js": "^0.13.15",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"concurrently": "^7.3.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"node-loader": "^2.0.0",
"vue-cli-plugin-i18n": "~2.3.1",
"wait-on": "^6.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"no-unused-expressions": "off"
},
"globals": {
"nw": "readonly"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"build": {
"nwVersion": "0.68.1",
"targets": [
"zip",
"nsis"
],
"output": "./dist-nw/",
"files": [
"./dist/**/*.!(node)",
"./icons/**/*",
"./languages/*",
"./node_modules/sharp/**/*.@(node|dll|dylib)",
"./bin/**/*",
"./filters/**/*",
"./preload.html"
],
"overriddenProperties": {
"main": "preload.html"
},
"win": {
"productName": "iYoImageConverter",
"displayName": "iYo Image Converter",
"fileDescription": "https://github.com/ssnangua",
"icon": "installer.ico",
"runAsAdmin": false
},
"nsis": {
"icon": "installer.ico",
"unIcon": "uninstaller.ico",
"installerIcon": "installer.ico",
"uninstallerIcon": "uninstaller.ico",
"languages": [
"English",
"SimpChinese"
]
},
"mac": {
"name": "iYo",
"displayName": "iYo Image Converter",
"description": "https://github.com/ssnangua",
"icon": "icon.icns",
"documentIcon": "icon.icns"
}
}
}