-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 2.64 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
{
"name": "terminal-tweaker",
"description": "Tweak your windows terminal to heart's content with this app using its beautiful interface to configure everything about the terminal.",
"author": "nateshmbhat",
"version": "0.1.1",
"icon": "assets/app.ico",
"keywords": [
"terminal-tweaker",
"terminal tweaker",
"tweaker",
"terminal",
"windows terminal tweaker"
],
"license": "GPL-3",
"private": true,
"homepage": "./",
"build": {
"appId": "com.natesh.terminal-tweaker",
"productName": "Terminal Tweaker",
"copyright": "Copyright © 2019 Natesh M Bhat",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"win": {
"target": "portable",
"icon": "assets/app.ico"
}
},
"dependencies": {
"easy-peasy": "^2.6.5",
"electron-is-dev": "^1.1.0",
"electron-store": "^4.0.0",
"mousetrap": "^1.6.3",
"react": "^16.8.6",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.2",
"uuid": "^3.3.2"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"clean": "rm dist build -rf",
"electron-build": "electron-builder",
"react-prebuild": "cross-env cp ../main/src/*.js ./public/",
"release": "tsc ../main/src/electron.ts && npm run react-prebuild && npm run react-build && electron-builder --publish=always",
"build": "tsc ../main/src/electron.ts && npm run react-prebuild && npm run react-build && electron-builder",
"start": "cross-env BROWSER=none npm run react-start"
},
"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": {
"@types/electron": "^1.6.10",
"@types/jest": "24.0.15",
"@types/mousetrap": "^1.6.3",
"@types/node": "12.0.10",
"electron": "^5.0.6",
"typescript": "3.5.2",
"@types/react": "16.8.22",
"@types/react-color": "^3.0.1",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/semantic-ui": "^2.2.7",
"@types/uuid": "^3.4.5",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"electron-builder": "^20.44.4",
"electron-is-dev": "^1.1.0",
"wait-on": "^3.2.0",
"watch": "^1.0.2"
}
}