bc-data 100.0.0-Beta.3
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/README.md +12 -0
- package/assetVersion.json +1947 -0
- package/index.js +11 -0
- package/package.json +26 -0
package/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as data from "./assetVersion.json";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A record containing the BC version (starting from R99) in which each asset was added.
|
|
5
|
+
*
|
|
6
|
+
* The record consists of asset group names, mapped to asset names, which in turn are mapped to their respective BC version.
|
|
7
|
+
*
|
|
8
|
+
* @type {{ [k in keyof typeof data]: Record<string, `R${number}` }}
|
|
9
|
+
*/
|
|
10
|
+
const assetVersion = data;
|
|
11
|
+
export { assetVersion };
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bc-data",
|
|
3
|
+
"version": "100.0.0-Beta.3",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+ssh://git@github.com/bananarama92/BC-stubs.git"
|
|
7
|
+
},
|
|
8
|
+
"author": "bananarama92 <bananarama921@outlook.com>",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"private": false,
|
|
11
|
+
"files": [
|
|
12
|
+
"index.js",
|
|
13
|
+
"assetVersion.json"
|
|
14
|
+
],
|
|
15
|
+
"description": "Miscellaneous data extracted from BC",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/bananarama92/BC-stubs/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/bananarama92/BC-stubs/bc-data#readme",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"typescript": "^5.2.2",
|
|
22
|
+
"@types/node": "^20.11.2",
|
|
23
|
+
"minimist": "^1.2.8",
|
|
24
|
+
"@types/minimist": "^1.2.5"
|
|
25
|
+
}
|
|
26
|
+
}
|