forked from kiibohd/configurator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 2.83 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
{
"name": "kiibohd-configurator",
"version": "1.0.3",
"description": "Configuration utility for Input Club keyboards",
"author": "Jeremy Bondeson <jbondeson@gmail.com> (https://input.club)",
"license": "GPL-3.0",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"rebuild-deps": "electron-builder install-app-deps",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "https://github.com/kiibohd/configurator"
},
"electronWebpack": {
"title": true,
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
},
"dependencies": {
"@material-ui/core": "^4.1.0",
"@material-ui/icons": "^4.1.0",
"@material-ui/lab": "^4.0.0-alpha.15",
"@mdi/font": "^3.6.95",
"bluebird": "^3.5.5",
"chroma-js": "^2.0.3",
"classnames": "^2.2.6",
"command-exists": "^1.2.8",
"compare-versions": "^3.4.0",
"he": "^1.2.0",
"jszip": "^3.2.1",
"localforage": "^1.7.3",
"lodash": "^4.17.11",
"loglevel": "^1.6.2",
"mdi-material-ui": "^6.0.0",
"mkdirp": "^0.5.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"source-map-support": "^0.5.12",
"url-join": "^4.0.0",
"usb": "^1.6.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.19",
"electron": "^5.0.3",
"electron-builder": "22.1.0",
"electron-devtools-installer": "^2.2.4",
"electron-webpack": "^2.6.2",
"electron-webpack-eslint": "^4.0.2",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0"
},
"resolutions": {
"upath": "^1.1.2"
},
"build": {
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"buildDependenciesFromSource": true,
"productName": "Kiibohd Configurator",
"appId": "club.input.KiibohdConfigurator",
"asar": true,
"nodeGypRebuild": false,
"npmRebuild": true,
"mac": {
"target": [
"dmg",
"zip"
],
"identity": null,
"icon": "build/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"executableName": "kiibohd-configurator",
"vendor": "Input Club",
"category": "Utility"
},
"directories": {
"buildResources": "build",
"output": "output"
},
"publish": {
"provider": "github"
}
}
}