-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "starfield",
"version": "1.10.3",
"description": "Vortex Extension for Starfield",
"author": "Nexus Mods",
"private": true,
"main": "./dist/index.ts",
"type": "module",
"config": {
"extensionName": "Game: Starfield",
"issueTracker": "https://github.com/Nexus-Mods/game-starfield/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copyassets": "copyfiles -f ./src/assets/* ./dist/",
"build": "npx webpack && yarn copyassets && yarn copystyles && node createinfojson.js && yarn packplugin",
"buildcopydev": "yarn build && yarn copyplugindev",
"copystyles": "node copystyles.js",
"copyplugin": "node copyplugin.js",
"copyplugindev": "node copyplugin.js -dev",
"packplugin": "node packageplugin.js"
},
"license": "GPLV3",
"devDependencies": {
"@types/react-bootstrap": "^0.32.20",
"bluebird": "^3.7.2",
"react": "^18.2.0",
"semver": "^7.6.3",
"strongly-typed-events": "^3.0.9",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vortex-api": "Nexus-Mods/vortex-api",
"vortex-ext-common": "^0.4.0",
"webpack": "^5.57.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@types/estree": "^1.0.3",
"archiver": "^6.0.0",
"axios": "^1.6.2",
"copyfiles": "^2.1.1",
"ini-comments": "^5.0.0",
"react-bootstrap": "^0.33.0",
"react-i18next": "^13.3.1",
"react-redux": "^8.0.5",
"redux-act": "^1.8.0",
"turbowalk": "Nexus-Mods/node-turbowalk",
"xml2js": "^0.6.2"
}
}