forked from kkosuge/editaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "Editaro",
"version": "1.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:electron": "vue-cli-service build:electron",
"postinstall": "electron-builder install-app-deps",
"serve:electron": "vue-cli-service serve:electron"
},
"dependencies": {
"@types/lodash": "^4.14.118",
"lodash": "^4.17.11",
"monaco-editor": "0.14.3",
"monaco-vim": "^0.0.7",
"node-sass": "^4.9.3",
"pretty-checkbox": "^3.0.3",
"sass-loader": "^7.1.0",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.4",
"@vue/cli-plugin-eslint": "^3.0.4",
"@vue/cli-plugin-typescript": "^3.0.4",
"@vue/cli-service": "^3.0.4",
"@vue/eslint-config-prettier": "^3.0.4",
"@vue/eslint-config-typescript": "^3.0.4",
"electron": "^2.0.2",
"typescript": "^3.0.0",
"vue-cli-plugin-electron-builder": "^1.0.0-rc.3",
"vue-template-compiler": "^2.5.17"
},
"main": "dist_electron/bundled/background.js",
"build": {
"mac": {
"icon": "icons/mac/app.icns"
},
"win": {
"icon": "icons/win/app.ico"
},
"linux": {
"icon": "icons/png"
}
}
}