-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "cloudemoticon-web",
"description": "Your emotion companion",
"author": "KTachibanaM",
"main": "public/electron.js",
"version": "1.4.1",
"license": "MIT",
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"copy-to-clipboard": "^3.2.1",
"electron-is-dev": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"concurrently": "^8.2.0",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.3",
"electron": "^25.8.4",
"electron-builder": "^23.6.0",
"react-scripts": "^2.1.1"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "react-scripts start",
"headless": "cross-env BROWSER=none react-scripts start",
"electron": "electron .",
"start-electron": "concurrently \"npm run headless\" \"npm run electron\"",
"build": "react-scripts build",
"prepackage-electron": "npm run build",
"package-electron": "electron-builder build",
"eject": "react-scripts eject"
},
"build": {
"appId": "moe.emoticon.cloudemoticon",
"productName": "Cloud Emoticon",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"win": {
"icon": "./assets/icon.png"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}