ipld-schema-describer 3.0.21 → 3.0.23

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.
@@ -12,7 +12,7 @@ jobs:
12
12
  - name: Checkout Repository
13
13
  uses: actions/checkout@v6
14
14
  - name: Use Node.js ${{ matrix.node }}
15
- uses: actions/setup-node@v6.2.0
15
+ uses: actions/setup-node@v6.4.0
16
16
  with:
17
17
  node-version: ${{ matrix.node }}
18
18
  - name: Install Dependencies
@@ -35,7 +35,7 @@ jobs:
35
35
  with:
36
36
  fetch-depth: 0
37
37
  - name: Setup Node.js
38
- uses: actions/setup-node@v6.2.0
38
+ uses: actions/setup-node@v6.4.0
39
39
  with:
40
40
  node-version: lts/*
41
41
  registry-url: 'https://registry.npmjs.org'
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.0.23](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.22...v3.0.23) (2026-04-28)
2
+
3
+ ### Trivial Changes
4
+
5
+ * **deps:** bump actions/setup-node from 6.3.0 to 6.4.0 ([#66](https://github.com/rvagg/js-ipld-schema-describer/issues/66)) ([45d97ba](https://github.com/rvagg/js-ipld-schema-describer/commit/45d97ba33389133edf0309c2304798b9069dbb3d))
6
+
7
+ ## [3.0.22](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.21...v3.0.22) (2026-03-30)
8
+
9
+ ### Trivial Changes
10
+
11
+ * **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([a33822f](https://github.com/rvagg/js-ipld-schema-describer/commit/a33822f50c492ab366cc80bfa4b7acb18d202847))
12
+ * **deps:** bump actions/setup-node from 6.2.0 to 6.3.0 ([#64](https://github.com/rvagg/js-ipld-schema-describer/issues/64)) ([6febd34](https://github.com/rvagg/js-ipld-schema-describer/commit/6febd348ac72518fd0d2dfaae53358b648a41591))
13
+ * update deps & upgrade to typescript 6 ([62e5dfb](https://github.com/rvagg/js-ipld-schema-describer/commit/62e5dfb4690451b6172bdddc9c68fc210a4d1565))
14
+
1
15
  ## [3.0.21](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.20...v3.0.21) (2026-01-21)
2
16
 
3
17
  ### Trivial Changes
@@ -1,10 +1,10 @@
1
1
  import { kind } from './kind.js'
2
2
 
3
3
  /**
4
- * @typedef {import('ipld-schema/schema-schema').Schema} Schema
5
- * @typedef {import('ipld-schema/schema-schema').TypeDefnLink} TypeDefnLink
6
- * @typedef {import('ipld-schema/schema-schema').TypeDefnList} TypeDefnList
7
- * @typedef {import('ipld-schema/schema-schema').TypeDefnMap} TypeDefnMap
4
+ * @typedef {import('@ipld/schema/schema-schema.js').Schema} Schema
5
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnLink} TypeDefnLink
6
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnList} TypeDefnList
7
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnMap} TypeDefnMap
8
8
  */
9
9
 
10
10
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ipld-schema-describer",
3
- "version": "3.0.21",
3
+ "version": "3.0.23",
4
4
  "description": "IPLD Schema Describer",
5
5
  "main": "ipld-schema-describer.js",
6
6
  "type": "module",
@@ -34,15 +34,15 @@
34
34
  },
35
35
  "homepage": "https://github.com/rvagg/js-ipld-schema-describer#readme",
36
36
  "devDependencies": {
37
- "c8": "^10.0.0",
38
- "chai": "^6.0.1",
39
- "mocha": "^11.0.1",
40
- "polendina": "^3.2.1",
41
- "standard": "^17.1.0",
42
- "typescript": "^5.3.3"
37
+ "c8": "^11.0.0",
38
+ "chai": "^6.2.2",
39
+ "mocha": "^11.7.5",
40
+ "polendina": "^3.2.20",
41
+ "standard": "^17.1.2",
42
+ "typescript": "^6.0.2"
43
43
  },
44
44
  "dependencies": {
45
- "ipld-schema": "^3.0.3"
45
+ "@ipld/schema": "^7.0.11"
46
46
  },
47
47
  "typesVersions": {
48
48
  "*": {
package/tsconfig.json CHANGED
@@ -17,24 +17,21 @@
17
17
  "alwaysStrict": true,
18
18
  "esModuleInterop": true,
19
19
  "target": "ES2018",
20
- "module": "ESNext",
21
- "moduleResolution": "node",
20
+ "module": "nodenext",
21
+ "moduleResolution": "nodenext",
22
22
  "declaration": true,
23
23
  "declarationMap": true,
24
24
  "outDir": "types",
25
25
  "skipLibCheck": true,
26
26
  "stripInternal": true,
27
27
  "resolveJsonModule": true,
28
- "emitDeclarationOnly": true,
29
- "baseUrl": ".",
30
- "paths": {
31
- "ipld-schema-describer": [ "ipld-schema-describer.js" ]
32
- }
28
+ "emitDeclarationOnly": true
33
29
  },
34
30
  "exclude": [
35
31
  "node_modules",
36
32
  "types",
37
- "test"
33
+ "test",
34
+ "example.js"
38
35
  ],
39
36
  "compileOnSave": false
40
37
  }
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @typedef {import('ipld-schema/schema-schema').Schema} Schema
3
- * @typedef {import('ipld-schema/schema-schema').TypeDefnLink} TypeDefnLink
4
- * @typedef {import('ipld-schema/schema-schema').TypeDefnList} TypeDefnList
5
- * @typedef {import('ipld-schema/schema-schema').TypeDefnMap} TypeDefnMap
2
+ * @typedef {import('@ipld/schema/schema-schema.js').Schema} Schema
3
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnLink} TypeDefnLink
4
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnList} TypeDefnList
5
+ * @typedef {import('@ipld/schema/schema-schema.js').TypeDefnMap} TypeDefnMap
6
6
  */
7
7
  /**
8
8
  * @param {any} obj
@@ -12,8 +12,8 @@ export function describe(obj: any): {
12
12
  schema: Schema;
13
13
  root: string;
14
14
  };
15
- export type Schema = import("ipld-schema/schema-schema").Schema;
16
- export type TypeDefnLink = import("ipld-schema/schema-schema").TypeDefnLink;
17
- export type TypeDefnList = import("ipld-schema/schema-schema").TypeDefnList;
18
- export type TypeDefnMap = import("ipld-schema/schema-schema").TypeDefnMap;
15
+ export type Schema = import("@ipld/schema/schema-schema.js").Schema;
16
+ export type TypeDefnLink = import("@ipld/schema/schema-schema.js").TypeDefnLink;
17
+ export type TypeDefnList = import("@ipld/schema/schema-schema.js").TypeDefnList;
18
+ export type TypeDefnMap = import("@ipld/schema/schema-schema.js").TypeDefnMap;
19
19
  //# sourceMappingURL=ipld-schema-describer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ipld-schema-describer.d.ts","sourceRoot":"","sources":["../ipld-schema-describer.js"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH;;;GAGG;AACH,8BAHW,GAAG,GACD;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CA4B5C;qBApCY,OAAO,2BAA2B,EAAE,MAAM;2BAC1C,OAAO,2BAA2B,EAAE,YAAY;2BAChD,OAAO,2BAA2B,EAAE,YAAY;0BAChD,OAAO,2BAA2B,EAAE,WAAW"}
1
+ {"version":3,"file":"ipld-schema-describer.d.ts","sourceRoot":"","sources":["../ipld-schema-describer.js"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH;;;GAGG;AACH,8BAHW,GAAG,GACD;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CA4B5C;qBApCY,OAAO,+BAA+B,EAAE,MAAM;2BAC9C,OAAO,+BAA+B,EAAE,YAAY;2BACpD,OAAO,+BAA+B,EAAE,YAAY;0BACpD,OAAO,+BAA+B,EAAE,WAAW"}
@@ -1 +0,0 @@
1
- {"root":["../example.js","../ipld-schema-describer.js","../kind.js"],"version":"5.9.3"}