@nexusmods/vortex-api 1.0.0 → 2.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +619 -0
- package/README.md +262 -0
- package/bin/extractInfo.mjs +45 -0
- package/docs/EVENTS.md +203 -0
- package/docs/EXAMPLES.md +75 -0
- package/docs/MIGRATION.md +370 -0
- package/lib/api.d.ts +9597 -0
- package/package.json +100 -9
- package/nexusmods-vortex-api-1.0.0.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,104 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://www.schemastore.org/package.json",
|
|
2
3
|
"name": "@nexusmods/vortex-api",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
4
|
+
"version": "2.2.0-beta.1",
|
|
5
|
+
"license": "GPL-3.0-only",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Black Tree Gaming Ltd.",
|
|
8
|
+
"url": "https://nexusmods.com"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/Nexus-Mods/Vortex.git",
|
|
13
|
+
"directory": "packages/vortex-api"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"provenance": true
|
|
18
|
+
},
|
|
19
|
+
"type": "module",
|
|
20
|
+
"types": "./src/index.ts",
|
|
21
|
+
"bin": {
|
|
22
|
+
"extractInfo": "./bin/extractInfo.mjs"
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./lib/api.d.ts"
|
|
27
|
+
}
|
|
8
28
|
},
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
29
|
+
"files": [
|
|
30
|
+
"lib",
|
|
31
|
+
"bin",
|
|
32
|
+
"README.md",
|
|
33
|
+
"docs"
|
|
34
|
+
],
|
|
35
|
+
"nx": {
|
|
36
|
+
"targets": {
|
|
37
|
+
"build": {
|
|
38
|
+
"executor": "nx:noop",
|
|
39
|
+
"dependsOn": [
|
|
40
|
+
{
|
|
41
|
+
"target": "api",
|
|
42
|
+
"projects": "@vortex/renderer"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"cache": false,
|
|
46
|
+
"outputs": [
|
|
47
|
+
"{projectRoot}/lib/api.d.ts"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"typecheck": {
|
|
51
|
+
"dependsOn": [
|
|
52
|
+
"build"
|
|
53
|
+
],
|
|
54
|
+
"cache": true,
|
|
55
|
+
"inputs": [
|
|
56
|
+
"default",
|
|
57
|
+
"{projectRoot}/lib/api.d.ts",
|
|
58
|
+
"{projectRoot}/tsconfig.lib.json"
|
|
59
|
+
],
|
|
60
|
+
"outputs": []
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@nexusmods/nexus-api": "git+https://github.com/Nexus-Mods/node-nexus-api#99a97cd1359527dbf5c46c93723d1846538badfe",
|
|
66
|
+
"@types/react": "^16.14.66",
|
|
67
|
+
"@types/react-dom": "~19.2.3",
|
|
68
|
+
"@types/redux": "3.6.0",
|
|
69
|
+
"date-fns": "2.30.0",
|
|
70
|
+
"electron": "42.3.3",
|
|
71
|
+
"i18next": "19.9.2",
|
|
72
|
+
"modmeta-db": "git+https://github.com/Nexus-Mods/modmeta-db#daa8935b6e38e255ec192c908adfce35d47c0336",
|
|
73
|
+
"node-7z": "git+https://github.com/Nexus-Mods/node-7z#b75def8d0d7d81a03f4526c52b8ada9a34a06479",
|
|
74
|
+
"re-reselect": "4.0.1",
|
|
75
|
+
"react": "16.14.0",
|
|
76
|
+
"redux": "4.2.1",
|
|
77
|
+
"reselect": "4.1.8",
|
|
78
|
+
"vitest": "4.1.8"
|
|
79
|
+
},
|
|
80
|
+
"peerDependencies": {
|
|
81
|
+
"@types/bluebird": "3.5.20",
|
|
82
|
+
"bluebird": "3.7.2",
|
|
83
|
+
"fs-extra": "9.1.0",
|
|
84
|
+
"immutability-helper": "3.1.1",
|
|
85
|
+
"minimatch": "3.1.5",
|
|
86
|
+
"react": "16.14.0",
|
|
87
|
+
"react-bootstrap": "0.33.1",
|
|
88
|
+
"react-dom": "16.14.0",
|
|
89
|
+
"react-i18next": "11.18.6",
|
|
90
|
+
"react-redux": "7.2.9",
|
|
91
|
+
"react-select": "1.3.0",
|
|
92
|
+
"redux": "4.2.1",
|
|
93
|
+
"redux-act": "1.8.0",
|
|
94
|
+
"redux-thunk": "2.4.2",
|
|
95
|
+
"relaxed-json": "1.0.3",
|
|
96
|
+
"semver": "7.7.4",
|
|
97
|
+
"string-template": "1.0.0",
|
|
98
|
+
"uuid": "3.4.0",
|
|
99
|
+
"xml2js": "0.5.0"
|
|
100
|
+
},
|
|
101
|
+
"scripts": {
|
|
102
|
+
"typecheck": "pnpm tsc -p tsconfig.lib.json"
|
|
103
|
+
}
|
|
13
104
|
}
|
|
Binary file
|