-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 904 Bytes
/
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
{
"name": "unreal-engine-game-library",
"version": "1.3.0",
"description": "A library of generic functions for setting up a Vortex extension for an Unreal Engine game.",
"main": "./out/index.js",
"repository": "",
"scripts": {
"webpack": "node ./node_modules/webpack/bin/webpack --config webpack.config.js --progress --profile --color",
"bundle7z": "7z a -t7z sample-extension.7z .\\dist\\index.js .\\dist\\info.json",
"build": "npm run webpack && extractInfo"
},
"author": "Pickysaurus",
"license": "GPL-3.0",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"7z-bin": "Nexus-Mods/7z-bin",
"@types/node": "^12.0.10",
"bluebird": "^3.5.5",
"electron": "22.3.25",
"ts-loader": "^9.4.2",
"typescript": "^3.5.2",
"vortex-api": "github:Nexus-Mods/vortex-api",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}