forked from sentialx/multrin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.33 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
{
"name": "multrin",
"version": "0.3.3",
"description": "Tabbed window organizer",
"keywords": [
"organizer",
"tabs",
"material",
"electron",
"react",
"mobx",
"styled-components"
],
"homepage": "https://github.com/sentialx/multrin#readme",
"main": "build/main.js",
"author": {
"name": "Eryk Rakowski",
"email": "sentialx@gmail.com"
},
"contributors": [
{
"name": "Eryk Rakowski",
"email": "sentialx@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/sentialx/multrin.git"
},
"bugs": {
"url": "https://github.com/sentialx/multrin/issues"
},
"scripts": {
"dev": "cross-env NODE_ENV='dev' node fuse.js",
"build": "node fuse.js",
"start": "cross-env ENV='dev' electron .",
"compile-win32": "npm run build && electron-builder -w -p always",
"compile-darwin": "npm run build && electron-builder -m -p always",
"compile-linux": "npm run build && electron-builder -l -p always",
"lint": "tslint \"src/**/*.ts*\"",
"lint-fix": "prettier --write \"src/**/*.ts*\" && tslint \"src/**/*.ts*\" --fix",
"postinstall": "electron-builder install-app-deps"
},
"pre-commit": [
"lint-fix"
],
"devDependencies": {
"@types/gsap": "1.20.2",
"@types/node": "12.0.4",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/styled-components": "4.1.15",
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"electron": "5.0.2",
"electron-builder": "20.41.0",
"fuse-box": "3.7.1",
"prettier": "1.17.1",
"terser": "4.0.0",
"tslint": "5.17.0",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.1",
"typescript-plugin-styled-components": "1.4.3"
},
"dependencies": {
"bindings": "1.5.0",
"electron-updater": "4.0.6",
"gsap": "2.1.3",
"iohook": "0.4.6",
"mobx": "5.9.4",
"mobx-react": "6.0.2",
"node-vibrant": "3.2.0-alpha",
"node-window-manager": "0.9.5",
"react": "16.8.6",
"react-dom": "16.8.6",
"styled-components": "4.2.1"
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "5.0.2"
},
"iohook": {
"targets": [
"node-72",
"electron-70"
],
"platforms": [
"win32",
"darwin"
],
"arches": [
"x64"
]
}
}