-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "chad",
"productName": "Chad",
"version": "4.0.0",
"description": "Telegram channel administration tool",
"scripts": {
"build:app": "parcel build app/index.html --out-dir package/app --public-url ./",
"build:package": "rm -rf package && npm run build:app && cp -r src/* package && cd package && npm i",
"electron": "cd package && electron index.js",
"package:linux": "electron-packager ./package --overwrite --platform linux --arch x64 --app-bundle-id com.perkovec.chad --icon ./src/icons/chad.png --out ./builds --executable-name chad",
"package:windows": "electron-packager ./package --overwrite --platform win32 --arch x64 --win32metadata.ProductName=\"Chad\" --icon ./src/icons/chad.ico --out ./builds",
"package:mac": "electron-packager ./package --overwrite --platform darwin --arch x64 --app-bundle-id com.perkovec.chad --icon ./src/icons/chad.icns --out ./builds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/40PK/Chad.git"
},
"keywords": [
"Telegram",
"tool",
"administration",
"channel",
"Electron"
],
"license": "GNU GPLv3",
"author": "Perkovec",
"bugs": {
"url": "https://github.com/40PK/Chad/issues"
},
"homepage": "https://github.com/40PK/Chad#readme",
"devDependencies": {
"electron": "^9.0.0",
"electron-packager": "^14.2.1",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"material-ui": "^0.20.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-addons-shallow-compare": "^15.6.2",
"react-deep-force-update": "^2.1.3",
"react-dom": "^16.13.1",
"react-layout-pane": "^0.1.16",
"react-tap-event-plugin": "^3.0.3",
"semver-compare": "^1.0.0",
"superagent": "^5.2.2",
"velocity-animate": "^1.5.2",
"xss": "^1.0.6"
}
}