forked from kamranahmedse/pennywise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.85 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
{
"name": "pennywise",
"description": "Pennywise – Cross-platform application that allows you to open URLs in a floating window that always stays on top.",
"productName": "Pennywise",
"author": "Kamran Ahmed <[email protected]>",
"version": "0.7.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.3.1",
"electron-pdf-window": "^1.0.12",
"electron-updater": "^4.0.6",
"font-awesome": "^4.7.0",
"is-url": "^1.2.4",
"lodash.debounce": "^4.0.8",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"query-string": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"url-parse": "^1.4.7",
"yargs": "^13.2.4"
},
"scripts": {
"_react": "cross-env BROWSER=none react-scripts start",
"_electron": "nodemon --exec \"cross-env APP_URL=http://localhost:3000 electron .\" --ext js --watch public/",
"_build": "react-scripts build",
"start": "concurrently \"yarn _react\" \"wait-on http://localhost:3000 && yarn _electron\" ",
"build": "yarn _build && build --mac --win --linux --x64 --ia32 -p always",
"icons": "electron-icon-maker -i public/img/pennywise.png -o public",
"test": "mocha"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"build": {
"extends": null,
"appId": "info.kamranahmed.pennywise",
"asar": true,
"copyright": "Copyright © 2018 Kamran Ahmed",
"files": [
"public/**/*",
"build/**/*",
"!public/pennywise.png",
"package.json"
],
"mac": {
"category": "public.app-category.navigation",
"icon": "public/img/icon.icns"
},
"linux": {
"category": "Network",
"target": [
{
"target": "deb",
"arch": [
"ia32",
"x64"
]
},
{
"target": "rpm",
"arch": [
"ia32",
"x64"
]
},
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
}
]
},
"win": {
"target": [
"zip",
"nsis"
],
"icon": "public/img/icon.ico"
},
"fileAssociations": [
{
"name": "Document",
"description": "Pennywise",
"role": "Viewer",
"ext": "html"
}
]
},
"devDependencies": {
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron": "^5.0.3",
"electron-builder": "^20.43.0",
"electron-icon-maker": "^0.0.4",
"jquery": "^3.4.1",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"popper.js": "^1.15.0",
"spectron": "^5.0.0",
"wait-on": "^3.2.0",
"typescript": "^3.6.4"
}
}