-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.63 KB
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
124
125
126
127
{
"name": "minecraft-manager",
"version": "2.6.0",
"license": "GPL-3.0",
"main": "main.js",
"author": "theemeraldtree",
"description": "Minecraft Manager",
"homepage": "https://github.com/theemeraldtree/minecraft-manager",
"repository": "github:theemeraldtree/minecraft-manager",
"productName": "Minecraft Manager",
"build": {
"appId": "net.theemeraldtree.minecraftmanager",
"extraResources": [
"resources/*"
],
"files": [
"resources/*",
"bundles/**",
"main.js",
"package.json"
],
"publish": {
"provider": "github",
"repo": "minecraft-manager",
"owner": "theemeraldtree"
},
"win": {
"target": "nsis",
"artifactName": "Install Minecraft Manager.${ext}"
},
"mac": {
"target": "dmg",
"artifactName": "Install Minecraft Manager.${ext}"
},
"linux": {
"target": "AppImage",
"artifactName": "Minecraft Manager.${ext}"
},
"nsis": {
"license": "LICENSE",
"oneClick": "false",
"allowElevation": "false",
"packElevateHelper": "false",
"allowToChangeInstallationDirectory": "true"
},
"dmg": {
"title": "Install Minecraft Manager"
}
},
"dependencies": {
"axios": "^0.19.2",
"electron-updater": "^4.0.6",
"fuzzysort": "^1.1.4",
"lodash.debounce": "^4.0.8",
"v8-compile-cache": "^2.1.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@theemeraldtree/emeraldui": "^0.1.3",
"adm-zip": "^0.4.13",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^4.4.0",
"chokidar": "^3.4.0",
"css-loader": "^3.0.0",
"electron": "8.3.0",
"electron-builder": "^22.6.1",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jimp": "^0.6.4",
"kind-of": "^6.0.3",
"mkdirp": "^0.5.1",
"p-map": "^4.0.0",
"preload-webpack-plugin": "3.0.0-beta.4",
"prettier": "^1.19.1",
"prismarine-nbt": "^1.2.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.0",
"react": "^16.10.0",
"react-contextmenu": "^2.11.0",
"react-dom": "^16.10.0",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.4.1",
"rimraf": "^2.6.3",
"semver": "^6.1.1",
"style-loader": "^1.1.3",
"styled-components": "^5.1.0",
"styled-transition-group": "^2.0.1",
"stylis": "^3.5.4",
"tar": "^6.0.2",
"uuid": "^8.1.0",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"resolutions": {
"react": "^16.10.0"
},
"scripts": {
"dev": "webpack-dev-server --mode development --inline --port 9483",
"compile": "webpack --mode production",
"build": "electron-builder ./",
"package": "npm run compile && npm run build",
"lint": "npx eslint src",
"lint-fix": "npx eslint src --fix",
"pub": "electron-builder ./ --publish onTagOrDraft",
"ci": "yarn run compile && yarn pub",
"license-disclaimer": "yarn licenses generate-disclaimer > src/assets/licenseDisclaimer.txt"
}
}