-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.78 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
{
"name": "adb-memory-monitoring-electron",
"version": "0.1.0",
"private": true,
"main": "build/electron.js",
"DEV": true,
"dependencies": {
"echarts": "^4.3.0",
"koa": "^2.8.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-scrollbar": "^0.5.6"
},
"scripts": {
"start": "react-scripts start",
"build": "export GENERATE_SOURCEMAP=false && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"estart": "electron ."
},
"build": {
"productName": "adb-memory-monitoring-electron",
"appId": "org.sunyuting.ADBMemoryMonitoringElectron",
"files": [
"build/**/*",
"node_modules/**/*"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis", "zip"
],
"icon": "/home/sun/reactjs/amemory/build/icon256.ico"
},
"linux": {
"target": [
"AppImage"
],
"category": "Development",
"icon": "/home/sun/reactjs/amemory/build/logo.png"
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "adb-memory-monitoring-electron",
"repo": "adb-memory-monitoring-electron",
"private": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunyuting83/adb-memory-monitoring-electron.git"
},
"author": {
"name": "ADB Memory Monitoring Electron",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sunyuting83/adb-memory-monitoring-electron/issues"
},
"keywords": [
"electron",
"react",
"adb",
"memory",
"monitoring"
],
"homepage": ".",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^6.0.10",
"electron-builder": "^21.2.0"
}
}