@gowri48/npmpublish 1.2.2 → 1.2.3

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.
@@ -0,0 +1,28 @@
1
+ name: testing_1477_oidc
2
+ on:
3
+ workflow_dispatch:
4
+
5
+ permissions:
6
+ contents: read
7
+ id-token: write
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+
15
+ - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
16
+ with:
17
+ node-version: '24'
18
+ registry-url: 'https://registry.npmjs.org'
19
+ cache: 'npm'
20
+
21
+ # Use a read-only token for installing dependencies
22
+ - run: npm ci
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_READ }}
25
+
26
+ # Publish uses OIDC - no token needed
27
+ - run: npm publish
28
+
@@ -0,0 +1,21 @@
1
+ name: testing_npm(1477)
2
+ on:
3
+ workflow_dispatch:
4
+
5
+ permissions:
6
+ contents: read
7
+ id-token: write
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+
15
+ - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
16
+ with:
17
+ node-version: '24'
18
+ registry-url: 'https://registry.npmjs.org'
19
+ cache: 'npm'
20
+
21
+ - run: npm publish
@@ -0,0 +1,26 @@
1
+ name: testing-pnpm(1477)
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - uses: actions/checkout@v5
12
+ - uses: pnpm/action-setup@v6
13
+ with:
14
+ version: 10
15
+
16
+ - name: Setup Node
17
+ uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
18
+ with:
19
+ node-version: '24'
20
+ registry-url: 'https://npm.pkg.github.com'
21
+
22
+ - run: pnpm publish
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.TOKEN_GITHUB }}
25
+
26
+
@@ -0,0 +1,33 @@
1
+ name: testing-yarn(1477)
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+
12
+ - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
13
+ with:
14
+ node-version: '20'
15
+ registry-url: 'https://registry.npmjs.org'
16
+
17
+ - name: Enable Corepack + select Yarn version
18
+ run: |
19
+ corepack enable
20
+ corepack prepare yarn@2.4.3 --activate
21
+ yarn --version
22
+ - name: Configure npmjs registry auth
23
+ run: |
24
+ yarn config set npmRegistryServer "https://registry.npmjs.org"
25
+ yarn config set npmAlwaysAuth true
26
+ yarn config set npmAuthToken $NPM_AUTH_TOKEN
27
+ env:
28
+ NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29
+
30
+ - name: Install dependencies
31
+ run: yarn install --no-immutable
32
+
33
+
@@ -0,0 +1,26 @@
1
+ name: withoutdummy-pnpm
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ no-token-fails:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+ - uses: pnpm/action-setup@v4
12
+ with:
13
+ version: 7
14
+
15
+ - name: Setup Node with registry-url (no token provided)
16
+ uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
17
+ with:
18
+ node-version: '14'
19
+ registry-url: 'https://registry.npmjs.org'
20
+
21
+
22
+ - name: Show .npmrc contents
23
+ run: cat $NPM_CONFIG_USERCONFIG
24
+
25
+ - name: pnpm install (this will fail without dummy token)
26
+ run: pnpm install
@@ -0,0 +1,23 @@
1
+ name: withoutdummy-npm
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ no-token-fails:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+
12
+ - name: Setup Node with registry-url (no token provided)
13
+ uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
14
+ with:
15
+ node-version: '14'
16
+ registry-url: 'https://registry.npmjs.org'
17
+
18
+
19
+ - name: Show .npmrc contents
20
+ run: cat $NPM_CONFIG_USERCONFIG
21
+
22
+ - name: npm install (this will fail without dummy token)
23
+ run: npm install
@@ -0,0 +1,24 @@
1
+ name: withoutdummy-yarn
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ no-token-fails:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+
12
+ - name: Setup Node with registry-url (no token provided)
13
+ uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
14
+ with:
15
+ node-version: '12'
16
+ registry-url: 'https://registry.npmjs.org'
17
+
18
+
19
+ - name: Show .npmrc contents
20
+ run: cat $NPM_CONFIG_USERCONFIG
21
+
22
+ - name: yarn install (this will fail without dummy token)
23
+ run: yarn add lodash --dry-run
24
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
@@ -10,13 +10,12 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "publishConfig": {
13
- "access": "public"
13
+ "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "axios": "^1.7.0"
16
+ "axios": "^1.7.0"
17
17
  },
18
18
  "engines": {
19
19
  "node": ">=12"
20
- },
21
- "packageManager": "yarn@3.6.4"
22
- }
20
+ }
21
+ }
package/package-lock.json DELETED
@@ -1,301 +0,0 @@
1
- {
2
- "name": "@gowri48/npmpublish",
3
- "version": "1.0.9",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "@gowri48/npmpublish",
9
- "version": "1.0.9",
10
- "license": "ISC",
11
- "dependencies": {
12
- "axios": "^1.7.0"
13
- },
14
- "engines": {
15
- "node": ">=18"
16
- }
17
- },
18
- "node_modules/asynckit": {
19
- "version": "0.4.0",
20
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
21
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
22
- "license": "MIT"
23
- },
24
- "node_modules/axios": {
25
- "version": "1.15.0",
26
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.15.0.tgz",
27
- "integrity": "sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==",
28
- "license": "MIT",
29
- "dependencies": {
30
- "follow-redirects": "^1.15.11",
31
- "form-data": "^4.0.5",
32
- "proxy-from-env": "^2.1.0"
33
- }
34
- },
35
- "node_modules/call-bind-apply-helpers": {
36
- "version": "1.0.2",
37
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
38
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
39
- "license": "MIT",
40
- "dependencies": {
41
- "es-errors": "^1.3.0",
42
- "function-bind": "^1.1.2"
43
- },
44
- "engines": {
45
- "node": ">= 0.4"
46
- }
47
- },
48
- "node_modules/combined-stream": {
49
- "version": "1.0.8",
50
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
51
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
52
- "license": "MIT",
53
- "dependencies": {
54
- "delayed-stream": "~1.0.0"
55
- },
56
- "engines": {
57
- "node": ">= 0.8"
58
- }
59
- },
60
- "node_modules/delayed-stream": {
61
- "version": "1.0.0",
62
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
63
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
64
- "license": "MIT",
65
- "engines": {
66
- "node": ">=0.4.0"
67
- }
68
- },
69
- "node_modules/dunder-proto": {
70
- "version": "1.0.1",
71
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
72
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
73
- "license": "MIT",
74
- "dependencies": {
75
- "call-bind-apply-helpers": "^1.0.1",
76
- "es-errors": "^1.3.0",
77
- "gopd": "^1.2.0"
78
- },
79
- "engines": {
80
- "node": ">= 0.4"
81
- }
82
- },
83
- "node_modules/es-define-property": {
84
- "version": "1.0.1",
85
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
86
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
87
- "license": "MIT",
88
- "engines": {
89
- "node": ">= 0.4"
90
- }
91
- },
92
- "node_modules/es-errors": {
93
- "version": "1.3.0",
94
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
95
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
96
- "license": "MIT",
97
- "engines": {
98
- "node": ">= 0.4"
99
- }
100
- },
101
- "node_modules/es-object-atoms": {
102
- "version": "1.1.1",
103
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
104
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
105
- "license": "MIT",
106
- "dependencies": {
107
- "es-errors": "^1.3.0"
108
- },
109
- "engines": {
110
- "node": ">= 0.4"
111
- }
112
- },
113
- "node_modules/es-set-tostringtag": {
114
- "version": "2.1.0",
115
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
116
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
117
- "license": "MIT",
118
- "dependencies": {
119
- "es-errors": "^1.3.0",
120
- "get-intrinsic": "^1.2.6",
121
- "has-tostringtag": "^1.0.2",
122
- "hasown": "^2.0.2"
123
- },
124
- "engines": {
125
- "node": ">= 0.4"
126
- }
127
- },
128
- "node_modules/follow-redirects": {
129
- "version": "1.15.11",
130
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
131
- "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
132
- "funding": [
133
- {
134
- "type": "individual",
135
- "url": "https://github.com/sponsors/RubenVerborgh"
136
- }
137
- ],
138
- "license": "MIT",
139
- "engines": {
140
- "node": ">=4.0"
141
- },
142
- "peerDependenciesMeta": {
143
- "debug": {
144
- "optional": true
145
- }
146
- }
147
- },
148
- "node_modules/form-data": {
149
- "version": "4.0.5",
150
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
151
- "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
152
- "license": "MIT",
153
- "dependencies": {
154
- "asynckit": "^0.4.0",
155
- "combined-stream": "^1.0.8",
156
- "es-set-tostringtag": "^2.1.0",
157
- "hasown": "^2.0.2",
158
- "mime-types": "^2.1.12"
159
- },
160
- "engines": {
161
- "node": ">= 6"
162
- }
163
- },
164
- "node_modules/function-bind": {
165
- "version": "1.1.2",
166
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
167
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
168
- "license": "MIT",
169
- "funding": {
170
- "url": "https://github.com/sponsors/ljharb"
171
- }
172
- },
173
- "node_modules/get-intrinsic": {
174
- "version": "1.3.0",
175
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
176
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
177
- "license": "MIT",
178
- "dependencies": {
179
- "call-bind-apply-helpers": "^1.0.2",
180
- "es-define-property": "^1.0.1",
181
- "es-errors": "^1.3.0",
182
- "es-object-atoms": "^1.1.1",
183
- "function-bind": "^1.1.2",
184
- "get-proto": "^1.0.1",
185
- "gopd": "^1.2.0",
186
- "has-symbols": "^1.1.0",
187
- "hasown": "^2.0.2",
188
- "math-intrinsics": "^1.1.0"
189
- },
190
- "engines": {
191
- "node": ">= 0.4"
192
- },
193
- "funding": {
194
- "url": "https://github.com/sponsors/ljharb"
195
- }
196
- },
197
- "node_modules/get-proto": {
198
- "version": "1.0.1",
199
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
200
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
201
- "license": "MIT",
202
- "dependencies": {
203
- "dunder-proto": "^1.0.1",
204
- "es-object-atoms": "^1.0.0"
205
- },
206
- "engines": {
207
- "node": ">= 0.4"
208
- }
209
- },
210
- "node_modules/gopd": {
211
- "version": "1.2.0",
212
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
213
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
214
- "license": "MIT",
215
- "engines": {
216
- "node": ">= 0.4"
217
- },
218
- "funding": {
219
- "url": "https://github.com/sponsors/ljharb"
220
- }
221
- },
222
- "node_modules/has-symbols": {
223
- "version": "1.1.0",
224
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
225
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
226
- "license": "MIT",
227
- "engines": {
228
- "node": ">= 0.4"
229
- },
230
- "funding": {
231
- "url": "https://github.com/sponsors/ljharb"
232
- }
233
- },
234
- "node_modules/has-tostringtag": {
235
- "version": "1.0.2",
236
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
237
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
238
- "license": "MIT",
239
- "dependencies": {
240
- "has-symbols": "^1.0.3"
241
- },
242
- "engines": {
243
- "node": ">= 0.4"
244
- },
245
- "funding": {
246
- "url": "https://github.com/sponsors/ljharb"
247
- }
248
- },
249
- "node_modules/hasown": {
250
- "version": "2.0.2",
251
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
252
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
253
- "license": "MIT",
254
- "dependencies": {
255
- "function-bind": "^1.1.2"
256
- },
257
- "engines": {
258
- "node": ">= 0.4"
259
- }
260
- },
261
- "node_modules/math-intrinsics": {
262
- "version": "1.1.0",
263
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
264
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
265
- "license": "MIT",
266
- "engines": {
267
- "node": ">= 0.4"
268
- }
269
- },
270
- "node_modules/mime-db": {
271
- "version": "1.52.0",
272
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
273
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
274
- "license": "MIT",
275
- "engines": {
276
- "node": ">= 0.6"
277
- }
278
- },
279
- "node_modules/mime-types": {
280
- "version": "2.1.35",
281
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
282
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
283
- "license": "MIT",
284
- "dependencies": {
285
- "mime-db": "1.52.0"
286
- },
287
- "engines": {
288
- "node": ">= 0.6"
289
- }
290
- },
291
- "node_modules/proxy-from-env": {
292
- "version": "2.1.0",
293
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
294
- "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
295
- "license": "MIT",
296
- "engines": {
297
- "node": ">=10"
298
- }
299
- }
300
- }
301
- }
package/pnpm-lock.yaml DELETED
@@ -1,205 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- dependencies:
11
- axios:
12
- specifier: ^1.7.0
13
- version: 1.15.0
14
-
15
- packages:
16
-
17
- asynckit@0.4.0:
18
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
19
-
20
- axios@1.15.0:
21
- resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
22
-
23
- call-bind-apply-helpers@1.0.2:
24
- resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
25
- engines: {node: '>= 0.4'}
26
-
27
- combined-stream@1.0.8:
28
- resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
29
- engines: {node: '>= 0.8'}
30
-
31
- delayed-stream@1.0.0:
32
- resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
33
- engines: {node: '>=0.4.0'}
34
-
35
- dunder-proto@1.0.1:
36
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
37
- engines: {node: '>= 0.4'}
38
-
39
- es-define-property@1.0.1:
40
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
41
- engines: {node: '>= 0.4'}
42
-
43
- es-errors@1.3.0:
44
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
45
- engines: {node: '>= 0.4'}
46
-
47
- es-object-atoms@1.1.1:
48
- resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
49
- engines: {node: '>= 0.4'}
50
-
51
- es-set-tostringtag@2.1.0:
52
- resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
53
- engines: {node: '>= 0.4'}
54
-
55
- follow-redirects@1.15.11:
56
- resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
57
- engines: {node: '>=4.0'}
58
- peerDependencies:
59
- debug: '*'
60
- peerDependenciesMeta:
61
- debug:
62
- optional: true
63
-
64
- form-data@4.0.5:
65
- resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
66
- engines: {node: '>= 6'}
67
-
68
- function-bind@1.1.2:
69
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
70
-
71
- get-intrinsic@1.3.0:
72
- resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
73
- engines: {node: '>= 0.4'}
74
-
75
- get-proto@1.0.1:
76
- resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
77
- engines: {node: '>= 0.4'}
78
-
79
- gopd@1.2.0:
80
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
81
- engines: {node: '>= 0.4'}
82
-
83
- has-symbols@1.1.0:
84
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
85
- engines: {node: '>= 0.4'}
86
-
87
- has-tostringtag@1.0.2:
88
- resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
89
- engines: {node: '>= 0.4'}
90
-
91
- hasown@2.0.2:
92
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
93
- engines: {node: '>= 0.4'}
94
-
95
- math-intrinsics@1.1.0:
96
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
97
- engines: {node: '>= 0.4'}
98
-
99
- mime-db@1.52.0:
100
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
101
- engines: {node: '>= 0.6'}
102
-
103
- mime-types@2.1.35:
104
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
105
- engines: {node: '>= 0.6'}
106
-
107
- proxy-from-env@2.1.0:
108
- resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
109
- engines: {node: '>=10'}
110
-
111
- snapshots:
112
-
113
- asynckit@0.4.0: {}
114
-
115
- axios@1.15.0:
116
- dependencies:
117
- follow-redirects: 1.15.11
118
- form-data: 4.0.5
119
- proxy-from-env: 2.1.0
120
- transitivePeerDependencies:
121
- - debug
122
-
123
- call-bind-apply-helpers@1.0.2:
124
- dependencies:
125
- es-errors: 1.3.0
126
- function-bind: 1.1.2
127
-
128
- combined-stream@1.0.8:
129
- dependencies:
130
- delayed-stream: 1.0.0
131
-
132
- delayed-stream@1.0.0: {}
133
-
134
- dunder-proto@1.0.1:
135
- dependencies:
136
- call-bind-apply-helpers: 1.0.2
137
- es-errors: 1.3.0
138
- gopd: 1.2.0
139
-
140
- es-define-property@1.0.1: {}
141
-
142
- es-errors@1.3.0: {}
143
-
144
- es-object-atoms@1.1.1:
145
- dependencies:
146
- es-errors: 1.3.0
147
-
148
- es-set-tostringtag@2.1.0:
149
- dependencies:
150
- es-errors: 1.3.0
151
- get-intrinsic: 1.3.0
152
- has-tostringtag: 1.0.2
153
- hasown: 2.0.2
154
-
155
- follow-redirects@1.15.11: {}
156
-
157
- form-data@4.0.5:
158
- dependencies:
159
- asynckit: 0.4.0
160
- combined-stream: 1.0.8
161
- es-set-tostringtag: 2.1.0
162
- hasown: 2.0.2
163
- mime-types: 2.1.35
164
-
165
- function-bind@1.1.2: {}
166
-
167
- get-intrinsic@1.3.0:
168
- dependencies:
169
- call-bind-apply-helpers: 1.0.2
170
- es-define-property: 1.0.1
171
- es-errors: 1.3.0
172
- es-object-atoms: 1.1.1
173
- function-bind: 1.1.2
174
- get-proto: 1.0.1
175
- gopd: 1.2.0
176
- has-symbols: 1.1.0
177
- hasown: 2.0.2
178
- math-intrinsics: 1.1.0
179
-
180
- get-proto@1.0.1:
181
- dependencies:
182
- dunder-proto: 1.0.1
183
- es-object-atoms: 1.1.1
184
-
185
- gopd@1.2.0: {}
186
-
187
- has-symbols@1.1.0: {}
188
-
189
- has-tostringtag@1.0.2:
190
- dependencies:
191
- has-symbols: 1.1.0
192
-
193
- hasown@2.0.2:
194
- dependencies:
195
- function-bind: 1.1.2
196
-
197
- math-intrinsics@1.1.0: {}
198
-
199
- mime-db@1.52.0: {}
200
-
201
- mime-types@2.1.35:
202
- dependencies:
203
- mime-db: 1.52.0
204
-
205
- proxy-from-env@2.1.0: {}