-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 2.77 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
{
"name": "clipboardhistory",
"version": "1.1.0",
"description": "Recreating Window's 10 clipboard history in electron for all OS(Win, Mac, Linux)",
"author": "Savan Naha <[email protected]>",
"productName": "Clipboard History",
"license": "MIT",
"private": true,
"dependencies": {
"cross-env": "6.0.2",
"bootstrap": "^4.4.1",
"electron-is-dev": "1.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"concurrently": "^5.2.0",
"electron": "11.5.0",
"electron-builder": "^21.2.0",
"react-scripts": "3.4.1",
"wait-on": "^5.0.0"
},
"build": {
"publish": {
"provider": "github",
"owner": "savannahar68",
"repo": "ClipboardHistory"
},
"appId": "com.savan.clipboardhistory",
"productName": "Clipboard-History",
"copyright": "savannahar68",
"linux": {
"category": "Utility",
"icon": "icons/mac/icon.icns",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "icons/mac/icon.icns",
"target": [
"dmg"
]
},
"win": {
"asar": false,
"icon": "icons/win/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
}
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"build": "yarn react-build && yarn electron-build",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron .\"",
"build_npm": "npm run react-build && npm run electron-build",
"start_npm": "concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\"",
"publish": "electron-builder -p always --config ./electron-builder.yml"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/savannahar68/ClipboardHistory.git"
},
"keywords": [
"electron-app",
"javascript",
"clipboard",
"clipboard-manager",
"electron"
],
"bugs": {
"url": "https://github.com/savannahar68/ClipboardHistory/issues"
}
}