-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
119 lines (119 loc) · 4.31 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
112
113
114
115
116
117
118
119
{
"productName": "FTB Electron App",
"name": "ftb-app",
"version": "1.26.5",
"private": true,
"main": "background.js",
"email": "[email protected]",
"author": {
"name": "Feed The Beast",
"email": "[email protected]",
"url": "https://feed-the-beast.com"
},
"description": "FTB Desktop App for downloading and managing Modpacks",
"scripts": {
"dev": "pnpm run dev:real-ads --test-ad",
"dev:real-ads": "cross-env WEBPACK_DEV_SERVER_URL=http://localhost:8080 TARGET_PLATFORM=electron NODE_ENV=development vue-cli-service ow:electron:serve --mode electron",
"overwolf:dev": "cross-env TARGET_PLATFORM=overwolf cross-env NODE_ENV=development vue-cli-service ow:electron:serve",
"overwolf:build": "cross-env TARGET_PLATFORM=overwolf NODE_ENV=production vue-cli-service build --mode overwolf",
"overwolf:serve": "cross-env TARGET_PLATFORM=overwolf NODE_ENV=development vue-cli-service build --watch --mode overwolf",
"build": "vue-cli-service ow:electron:build",
"build:bin:all:64": "vue-cli-service ow:electron:build -wl --x64",
"build:bin:all:arm": "vue-cli-service ow:electron:build -l --arm64",
"build:bin:mac:64": "vue-cli-service ow:electron:build -m --x64",
"build:bin:mac:arm": "vue-cli-service ow:electron:build -m --arm64",
"build:bin:test": "vue-cli-service ow:electron:build",
"gen:license": "license-checker --excludePrivatePackages --json --production > licenses.json",
"lint": "vue-cli-service lint",
"test": "jest",
"postinstall": "ow-electron-builder install-app-deps",
"postuninstall": "ow-electron-builder install-app-deps"
},
"engines": {
"node": "^18",
"npm": "dont-use-npm",
"yarn": "dont-use-yarn"
},
"dependencies": {
"@types/object-inspect": "^1.8.4",
"adm-zip": "^0.5.10",
"balloon-css": "^1.2.0",
"dayjs": "^1.11.7",
"electron-updater": "^6.1.8",
"markdown-it": "^13.0.1",
"mitt": "^3.0.0",
"object-inspect": "^1.13.1",
"semver": "^7.6.2",
"tailwindcss": "^1.9.6",
"vue": "^2.7.14",
"vue-native-websocket": "^2.0.14",
"vue-router": "^3.1.6",
"vue-virtual-scroller": "^1.1.2",
"vuex": "^3.4.0",
"vuex-class": "^0.3.2",
"wysiwyg.css": "^0.0.4"
},
"resolutions": {
"@achrinza/node-ipc": "^10.1.7",
"@babel/traverse": "^7.23.2",
"class-validator": ">=0.14.0",
"loader-utils": ">=1.4.1",
"ejs": ">=3.1.7",
"deasync": ">=0.1.30",
"@electron/notarize": "^2.5.0"
},
"devDependencies": {
"@electron/notarize": "^2.3.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@ftbapp/vue-cli-plugin-electron-builder": "file:patches/ftbapp-vue-cli-plugin-electron-builder-20.2.2.tgz",
"@overwolf/ow-cli": "0.0.5-0",
"@overwolf/ow-electron": "^31.7.3",
"@overwolf/ow-electron-builder": "^25.0.6",
"@overwolf/types": "^3.16.0",
"@sentry/webpack-plugin": "^1.18.9",
"@types/adm-zip": "^0.5.5",
"@types/jest": "^29.4.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.18.2",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^7.2.0",
"@types/tar": "^6.1.10",
"@types/webpack-env": "1.16.0",
"@types/xml2js": "^0.4.9",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-typescript": "^4.5.19",
"@vue/cli-plugin-unit-jest": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/devtools": "^6.5.0",
"@vue/test-utils": "1.0.2",
"@vue/vue2-jest": "28",
"archiver": "^5.3.1",
"babel-core": "7.0.0-bridge.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.3",
"electron-devtools-installer": "^3.2.0",
"electron-dl": "^3.0.0",
"electron-log": "^4.1.2",
"glob": "^10.3.10",
"jest": "^29.4.3",
"license-checker": "25.0.1",
"sass": "^1.35.1",
"sass-loader": "^10.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.11",
"yaml": "^2.4.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}