-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
{
"name": "ow-electron-packages-sample",
"version": "22.3.13",
"description": "ow-electron package sample app",
"main": "dist/browser/index.js",
"author": {
"name": "overwolf",
"email": "[email protected]"
},
"license": "MIT",
"overwolf": {
"packages": [
"gep",
"overlay"
]
},
"build": {
"nodeGypRebuild": false,
"appId": "com.overwolf.packageSample",
"asar": true,
"overwolf": {
"disableAdOptimization": false
},
"productName": "owElectronpackageSample",
"directories": {
"output": "build"
},
"files": [
"dist/**/*",
"*.js",
"*.html",
"*.exe"
],
"copyright": "Copyright 2023 Overwolf Ltd.",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-Setup-${version}.${ext}",
"publisherName": "Overwolf Ltd",
"legalTrademarks": "Copyright 2023 Overwolf Ltd."
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"scripts": {
"build:renderer": "webpack --config ./webpack.renderer.config.js",
"build:main": "webpack --config ./webpack.main.config.js",
"build": "yarn webpack --mode=development && yarn build:main && yarn build:renderer",
"build:dev": "yarn webpack --watch --mode=development",
"build:start": "yarn run build && ow-electron . ",
"start": "ow-electron .",
"build:ow-electron": "ow-electron-builder --c.extraMetadata.name=GameEventsTester --publish=never"
},
"devDependencies": {
"@overwolf/ow-electron": "latest",
"@overwolf/ow-electron-builder": "latest",
"@overwolf/ow-electron-packages-types": "^0.0.5",
"@types/jquery": "^3.5.16",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"copy-webpack-plugin": "^11.0.0",
"electron": "21.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^15.0.0",
"jest-mock-extended": "^3.0.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.7.4",
"typescript-logging": "^2.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"wrapper-webpack-plugin": "^2.1.0"
}
}