npm-pkgbuild 15.3.33 → 15.3.34
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-pkgbuild",
|
|
3
|
-
"version": "15.3.
|
|
3
|
+
"version": "15.3.34",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"content-entry": "^10.0.1",
|
|
60
60
|
"content-entry-filesystem": "^6.0.0",
|
|
61
61
|
"content-entry-transform": "^1.4.29",
|
|
62
|
-
"execa": "^9.
|
|
62
|
+
"execa": "^9.4.0",
|
|
63
63
|
"expression-expander": "^7.2.5",
|
|
64
64
|
"globby": "^14.0.2",
|
|
65
65
|
"ini": "^5.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"typescript": "^5.6.2"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
|
-
"node": ">=20.
|
|
85
|
+
"node": ">=20.17.0",
|
|
86
86
|
"bun": ">=1.1"
|
|
87
87
|
},
|
|
88
88
|
"repository": {
|
|
@@ -25,9 +25,9 @@ export function extractFromPackage(options?: {
|
|
|
25
25
|
verbose?: boolean;
|
|
26
26
|
}, env?: any): AsyncIterable<PackageDefinition>;
|
|
27
27
|
/**
|
|
28
|
-
* All content providers
|
|
28
|
+
* All content providers (input)
|
|
29
29
|
*/
|
|
30
|
-
export const allInputs: (typeof NPMPackContentProvider
|
|
30
|
+
export const allInputs: (typeof NPMPackContentProvider)[];
|
|
31
31
|
/**
|
|
32
32
|
* All output formats
|
|
33
33
|
*/
|
|
@@ -67,7 +67,6 @@ export type PackageDefinition = {
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
import { NPMPackContentProvider } from "./content/npm-pack-content-provider.mjs";
|
|
70
|
-
import { FileContentProvider } from "./content/file-content-provider.mjs";
|
|
71
70
|
import { RPM } from "./output/rpm.mjs";
|
|
72
71
|
import { OCI } from "./output/oci.mjs";
|
|
73
72
|
import { DOCKER } from "./output/docker.mjs";
|