@directus/extensions-registry 2.0.6 → 3.0.0

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 (3) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/license +1 -1
  3. package/package.json +10 -15
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import * as stream_web from 'stream/web';
1
2
  import { ExtensionType } from '@directus/extensions';
2
3
  import { z } from 'zod';
3
4
 
@@ -505,7 +506,7 @@ interface DownloadOptions {
505
506
  registry?: string;
506
507
  }
507
508
 
508
- declare const download: (versionId: string, requireSandbox?: boolean, options?: DownloadOptions) => Promise<ReadableStream<Uint8Array> | null>;
509
+ declare const download: (versionId: string, requireSandbox?: boolean, options?: DownloadOptions) => Promise<stream_web.ReadableStream<any> | null>;
509
510
 
510
511
  interface ListOptions {
511
512
  registry?: string;
package/license CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright 2024 Monospace, Inc.
3
+ Copyright 2025 Monospace, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
6
6
  documentation files (the “Software”), to deal in the Software without restriction, including without limitation the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@directus/extensions-registry",
3
- "version": "2.0.6",
3
+ "version": "3.0.0",
4
4
  "description": "Abstraction for exploring Directus extensions on a package registry",
5
5
  "homepage": "https://directus.io",
6
6
  "repository": {
@@ -21,22 +21,17 @@
21
21
  "dist"
22
22
  ],
23
23
  "dependencies": {
24
- "ky": "1.7.2",
25
- "lodash-es": "4.17.21",
26
- "validate-npm-package-name": "6.0.0",
27
- "zod": "3.23.8",
28
- "@directus/errors": "1.0.1",
29
- "@directus/extensions": "2.0.6",
30
- "@directus/utils": "12.0.5"
24
+ "ky": "1.7.4",
25
+ "zod": "3.24.1",
26
+ "@directus/errors": "2.0.0",
27
+ "@directus/extensions": "3.0.0"
31
28
  },
32
29
  "devDependencies": {
33
- "@types/lodash-es": "4.17.12",
34
- "@types/validate-npm-package-name": "4.0.2",
35
- "@vitest/coverage-v8": "2.1.2",
36
- "tsup": "8.3.0",
37
- "typescript": "5.6.3",
38
- "vitest": "2.1.2",
39
- "@directus/tsconfig": "2.0.0"
30
+ "@directus/tsconfig": "3.0.0",
31
+ "@vitest/coverage-v8": "2.1.8",
32
+ "tsup": "8.3.5",
33
+ "typescript": "5.7.3",
34
+ "vitest": "2.1.8"
40
35
  },
41
36
  "scripts": {
42
37
  "build": "tsup src/index.ts --format=esm --dts",