@jarenjs/refs 0.49.2 → 0.66.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -19,3 +19,19 @@ const jaren = new JarenValidator()
19
19
  The meta-schemas matter beyond `$ref` resolution: [`@jarenjs/validate`](../validate) uses them for draft detection, `$vocabulary`-aware keyword selection (including `format-assertion`), and cross-draft references — all offline, with no network fetches.
20
20
 
21
21
  See the repository [README](../../README.md) for full documentation and the [HOWTO](../../docs/HOWTO.md) for multi-draft setups.
22
+
23
+ ## Exports
24
+
25
+ Every subpath a consumer can import, derived from the manifest by
26
+ `npm run docs:derive` (`npm run docs:check` fails when the two drift):
27
+
28
+ <!--fact:exports.refs-->
29
+ | Import | Kind | Declarations |
30
+ |---|---|---|
31
+ | `@jarenjs/refs` | JavaScript | declared |
32
+ | `@jarenjs/refs/draft-06` | schema | — |
33
+ | `@jarenjs/refs/draft-07` | schema | — |
34
+ | `@jarenjs/refs/draft-2019-09` | JavaScript | declared |
35
+ | `@jarenjs/refs/draft-2020-12` | JavaScript | declared |
36
+ | `@jarenjs/refs/package.json` | metadata | — |
37
+ <!--/fact-->
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jarenjs/refs",
3
3
  "private": false,
4
- "version": "0.49.2",
4
+ "version": "0.66.1",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "types": "./dist/types/index.d.ts",
@@ -58,6 +58,6 @@
58
58
  "prepack": "npm run build:types"
59
59
  },
60
60
  "dependencies": {
61
- "@jarenjs/core": "^0.49.2"
61
+ "@jarenjs/core": "^0.66.1"
62
62
  }
63
63
  }