@fgv/ts-json-base 5.0.1-8 → 5.0.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/dist/index.browser.js +31 -0
- package/dist/index.js +29 -0
- package/dist/packlets/converters/converters.js +187 -0
- package/dist/packlets/converters/index.js +23 -0
- package/dist/packlets/file-tree/directoryItem.js +67 -0
- package/dist/packlets/file-tree/fileItem.js +126 -0
- package/dist/packlets/file-tree/fileTree.js +85 -0
- package/dist/packlets/file-tree/fileTreeAccessors.js +23 -0
- package/dist/packlets/file-tree/fileTreeHelpers.inMemory.js +28 -0
- package/dist/packlets/file-tree/fileTreeHelpers.js +29 -0
- package/dist/packlets/file-tree/fsTree.js +122 -0
- package/dist/packlets/file-tree/in-memory/inMemoryTree.js +177 -0
- package/dist/packlets/file-tree/in-memory/index.js +23 -0
- package/dist/packlets/file-tree/in-memory/treeBuilder.js +173 -0
- package/dist/packlets/file-tree/index.browser.js +34 -0
- package/dist/packlets/file-tree/index.js +35 -0
- package/dist/packlets/json/common.js +145 -0
- package/dist/packlets/json/index.js +23 -0
- package/dist/packlets/json-compatible/common.js +23 -0
- package/dist/packlets/json-compatible/converters.js +90 -0
- package/dist/packlets/json-compatible/index.js +26 -0
- package/dist/packlets/json-compatible/validators.js +54 -0
- package/dist/packlets/json-file/file.js +74 -0
- package/dist/packlets/json-file/index.browser.js +30 -0
- package/dist/packlets/json-file/index.js +30 -0
- package/dist/packlets/json-file/jsonFsHelper.js +166 -0
- package/dist/packlets/json-file/jsonLike.js +26 -0
- package/dist/packlets/json-file/jsonTreeHelper.js +116 -0
- package/dist/packlets/validators/index.js +23 -0
- package/dist/packlets/validators/validators.js +179 -0
- package/dist/test/fixtures/file-tree/config.json +1 -0
- package/dist/test/fixtures/file-tree/data/items.json +1 -0
- package/dist/test/fixtures/file-tree/docs/api/reference.json +1 -0
- package/dist/test/unit/data/file/bad/bad3.json +3 -0
- package/dist/test/unit/data/file/bad/thing1.json +4 -0
- package/dist/test/unit/data/file/bad/thing2.json +3 -0
- package/dist/test/unit/data/file/good/thing1.json +4 -0
- package/dist/test/unit/data/file/good/thing2.json +3 -0
- package/dist/test/unit/json-compatible/helpers.js +32 -0
- package/dist/ts-json-base.d.ts +51 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/packlets/json-file/index.browser.d.ts +1 -1
- package/lib/packlets/json-file/index.browser.js +2 -2
- package/lib/packlets/validators/validators.d.ts +41 -1
- package/lib/packlets/validators/validators.js +60 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fgv/ts-json-base",
|
|
3
|
-
"version": "5.0.1
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Typescript types and basic functions for working with json",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "dist/ts-json-base.d.ts",
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"ts-node": "^10.9.2",
|
|
45
45
|
"typescript": "5.9.3",
|
|
46
46
|
"eslint-plugin-n": "^17.23.1",
|
|
47
|
-
"@rushstack/heft-node-rig": "2.11.4",
|
|
48
47
|
"@rushstack/heft": "1.1.3",
|
|
49
48
|
"@rushstack/heft-jest-plugin": "1.1.3",
|
|
50
49
|
"@types/heft-jest": "1.0.6",
|
|
@@ -53,11 +52,14 @@
|
|
|
53
52
|
"@rushstack/eslint-config": "4.5.3",
|
|
54
53
|
"eslint-plugin-tsdoc": "~0.4.0",
|
|
55
54
|
"@types/luxon": "^3.7.1",
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
55
|
+
"@rushstack/heft-node-rig": "2.11.4",
|
|
56
|
+
"@microsoft/api-extractor": "^7.53.3",
|
|
57
|
+
"@fgv/ts-utils": "5.0.1",
|
|
58
|
+
"@fgv/heft-dual-rig": "0.1.0",
|
|
59
|
+
"@fgv/ts-utils-jest": "5.0.1"
|
|
58
60
|
},
|
|
59
61
|
"peerDependencies": {
|
|
60
|
-
"@fgv/ts-utils": "5.0.1
|
|
62
|
+
"@fgv/ts-utils": "5.0.1"
|
|
61
63
|
},
|
|
62
64
|
"dependencies": {
|
|
63
65
|
"luxon": "^3.7.2"
|