optolith-database-schema 0.20.3 → 0.20.5
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/CHANGELOG.md +14 -0
- package/gen/types.d.ts +21507 -0
- package/lib/types/Locale.d.ts +1275 -1
- package/lib/types/Locale.js +1291 -1290
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.5",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"dasschwarzeauge"
|
|
10
10
|
],
|
|
11
11
|
"files": [
|
|
12
|
+
"gen",
|
|
12
13
|
"lib",
|
|
13
14
|
"schema",
|
|
14
15
|
"AUTHORS",
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
"main": "./lib/main.js",
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./lib/main.js",
|
|
21
|
+
"./gen": "./gen/types.d.ts",
|
|
20
22
|
"./errors": "./lib/errors.js",
|
|
21
23
|
"./cache/*": "./lib/cache/*.js",
|
|
22
24
|
"./config/*": "./lib/config/*.js",
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
},
|
|
27
29
|
"scripts": {
|
|
28
30
|
"build": "tsc",
|
|
31
|
+
"generate": "tsondb generate",
|
|
29
32
|
"watch": "tsc -w",
|
|
30
33
|
"test": "node ./lib/test.js",
|
|
31
34
|
"release": "commit-and-tag-version",
|
|
@@ -35,7 +38,7 @@
|
|
|
35
38
|
"license": "MPL-2.0",
|
|
36
39
|
"dependencies": {
|
|
37
40
|
"@optolith/helpers": "^0.2.2",
|
|
38
|
-
"tsondb": "^0.
|
|
41
|
+
"tsondb": "^0.12.2",
|
|
39
42
|
"yaml": "^2.8.1"
|
|
40
43
|
},
|
|
41
44
|
"devDependencies": {
|