-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
123 lines (123 loc) · 3.27 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
118
119
120
121
122
123
{
"name": "simpleinstabot",
"productName": "SimpleInstaBot",
"description": "Simple Instagram bot",
"version": "1.11.2",
"license": "MIT",
"author": {
"name": "Mikael Finstad",
"email": "[email protected]",
"url": "https://mifi.no"
},
"repository": {
"type": "git",
"url": "https://github.com/mifi/SimpleInstaBot.git"
},
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@electron/remote": "^2.0.8",
"electron-is-dev": "^2.0.0",
"electron-store": "^5.1.1",
"filenamify": "^4.2.0",
"fs-extra": "^8.1.0",
"instauto": "^9.2.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"puppeteer-core": "^15.4.0",
"puppeteer-in-electron": "^3.0.5",
"yargs-parser": "^21.0.1"
},
"scripts": {
"start:frontend": "BROWSER=none PORT=3001 react-scripts start",
"start:electron": "wait-on http://localhost:3001 && electron .",
"start": "concurrently -k \"npm run start:frontend\" \"npm run start:electron\"",
"icon-gen": "mkdirp icon-build && node scripts/icon-gen.mjs",
"build": "yarn icon-gen && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .jsx --ext .js .",
"pack-mac": "electron-builder --mac",
"prepack-mac": "yarn build",
"pack-win": "electron-builder --win",
"prepack-win": "yarn build",
"pack-linux": "electron-builder --linux",
"prepack-linux": "yarn build",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"electron 19.0"
],
"development": [
"electron 19.0"
]
},
"devDependencies": {
"concurrently": "^4.1.0",
"electron": "^19.1.8",
"electron-builder": "^23.1.0",
"electron-builder-notarize": "^1.5.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"evergreen-ui": "^6.10.3",
"json5": "^2.2.2",
"mkdirp": "^1.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-lottie-player": "^1.4.3",
"react-scripts": "5.0.1",
"sharp": "^0.30.7",
"sweetalert2": "^11.4.23",
"sweetalert2-react-content": "^5.0.1",
"wait-on": "^6.0.1"
},
"build": {
"files": [
"build/**/*"
],
"appId": "no.mifi.simpleinstabot",
"artifactName": "${productName}-${os}.${ext}",
"afterSign": "electron-builder-notarize",
"mac": {
"hardenedRuntime": true,
"target": "dmg",
"icon": "icon-build/app-512.png"
},
"win": {
"target": "portable",
"icon": "icon-build/app-512.png"
},
"linux": {
"artifactName": "${productName}-${os}-${arch}.${ext}",
"icon": "icon-build/app-512.png",
"target": [
{
"arch": "x64",
"target": "AppImage"
},
{
"arch": "x64",
"target": "tar.bz2"
},
{
"arch": "armv7l",
"target": "tar.bz2"
},
{
"arch": "arm64",
"target": "tar.bz2"
}
]
}
}
}