npm-pkgbuild 18.2.8 → 18.2.9

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": "18.2.8",
3
+ "version": "18.2.9",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -51,7 +51,7 @@
51
51
  "tsc:types": "tsc -d --allowJs --declarationDir dist --emitDeclarationOnly ./src/extract-from-package.mjs"
52
52
  },
53
53
  "dependencies": {
54
- "@npmcli/arborist": "^9.1.0",
54
+ "@npmcli/arborist": "^9.1.1",
55
55
  "@vercel/nft": "^0.29.3",
56
56
  "aggregate-async-iterator": "^1.2.2",
57
57
  "commander": "^14.0.0",
@@ -59,7 +59,7 @@
59
59
  "content-entry": "^14.2.2",
60
60
  "content-entry-filesystem": "^9.0.9",
61
61
  "content-entry-transform": "^1.5.6",
62
- "execa": "^9.5.3",
62
+ "execa": "^9.6.0",
63
63
  "expression-expander": "^7.2.7",
64
64
  "ini": "^5.0.0",
65
65
  "iterable-string-interceptor": "^3.0.2",
@@ -72,11 +72,11 @@
72
72
  "uti": "^8.9.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@types/node": "^22.15.21",
75
+ "@types/node": "^22.15.23",
76
76
  "ava": "^6.3.0",
77
77
  "c8": "^10.1.3",
78
78
  "documentation": "^14.0.3",
79
- "semantic-release": "^24.2.4",
79
+ "semantic-release": "^24.2.5",
80
80
  "stream-buffers": "^3.0.3",
81
81
  "typescript": "^5.8.3"
82
82
  },
@@ -0,0 +1,7 @@
1
+ export class CollectionEntryWithPermissions extends CollectionEntry {
2
+ constructor(name: any, properties: any);
3
+ set mode(value: any);
4
+ get mode(): any;
5
+ #private;
6
+ }
7
+ import { CollectionEntry } from "content-entry";
@@ -0,0 +1,7 @@
1
+ export class FileSystemEntryWithPermissions extends FileSystemEntry {
2
+ constructor(name: any, baseDir: any, properties: any);
3
+ set mode(value: any);
4
+ get mode(): any;
5
+ #private;
6
+ }
7
+ import { FileSystemEntry } from "content-entry-filesystem";