@nosana/kit 0.1.3 → 0.1.5
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/programs/JobsProgram.d.ts +15 -3
- package/dist/programs/JobsProgram.js +24 -8
- package/examples/browser/.gitlab-ci.yml +4 -4
- package/examples/browser/nuxt.config.ts +6 -0
- package/examples/browser/package-lock.json +804 -41
- package/examples/browser/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare class NosanaClient {
|
|
|
16
16
|
export * from './config/index.js';
|
|
17
17
|
export * from './errors/NosanaError.js';
|
|
18
18
|
export * from './logger/Logger.js';
|
|
19
|
-
export { JobsProgram } from './programs/JobsProgram.js';
|
|
19
|
+
export { JobsProgram, JobState, MarketQueueType } from './programs/JobsProgram.js';
|
|
20
20
|
export type { Job, Market, Run } from './programs/JobsProgram.js';
|
|
21
21
|
export * from './ipfs/IPFS.js';
|
|
22
22
|
export * from './generated_clients/jobs/index.js';
|
package/dist/index.js
CHANGED
|
@@ -150,7 +150,7 @@ export * from './config/index.js';
|
|
|
150
150
|
export * from './errors/NosanaError.js';
|
|
151
151
|
export * from './logger/Logger.js';
|
|
152
152
|
// Export JobsProgram and related types
|
|
153
|
-
export { JobsProgram } from './programs/JobsProgram.js';
|
|
153
|
+
export { JobsProgram, JobState, MarketQueueType } from './programs/JobsProgram.js';
|
|
154
154
|
// Export IPFS utilities
|
|
155
155
|
export * from './ipfs/IPFS.js';
|
|
156
156
|
// Export all generated client types and functions
|
|
@@ -3,11 +3,23 @@ import { Address, Account } from 'gill';
|
|
|
3
3
|
import { NosanaClient } from '../index.js';
|
|
4
4
|
import * as programClient from "../generated_clients/jobs/index.js";
|
|
5
5
|
import { ConvertTypesForDb } from '../utils/index.js';
|
|
6
|
-
export
|
|
6
|
+
export declare enum JobState {
|
|
7
|
+
QUEUED = 0,
|
|
8
|
+
RUNNING = 1,
|
|
9
|
+
COMPLETED = 2,
|
|
10
|
+
STOPPED = 3
|
|
11
|
+
}
|
|
12
|
+
export declare enum MarketQueueType {
|
|
13
|
+
JOB_QUEUE = 0,
|
|
14
|
+
NODE_QUEUE = 1
|
|
15
|
+
}
|
|
16
|
+
export type Job = Omit<ConvertTypesForDb<programClient.JobAccountArgs>, 'state'> & {
|
|
7
17
|
address: Address;
|
|
18
|
+
state: JobState;
|
|
8
19
|
};
|
|
9
|
-
export type Market = ConvertTypesForDb<programClient.MarketAccountArgs> & {
|
|
20
|
+
export type Market = Omit<ConvertTypesForDb<programClient.MarketAccountArgs>, 'queueType'> & {
|
|
10
21
|
address: Address;
|
|
22
|
+
queueType: MarketQueueType;
|
|
11
23
|
};
|
|
12
24
|
export type Run = ConvertTypesForDb<programClient.RunAccountArgs> & {
|
|
13
25
|
address: Address;
|
|
@@ -36,7 +48,7 @@ export declare class JobsProgram extends BaseProgram {
|
|
|
36
48
|
* Fetch all job accounts
|
|
37
49
|
*/
|
|
38
50
|
all(filters?: {
|
|
39
|
-
state?:
|
|
51
|
+
state?: JobState;
|
|
40
52
|
market?: Address;
|
|
41
53
|
node?: Address;
|
|
42
54
|
project?: Address;
|
|
@@ -6,6 +6,18 @@ import { findAssociatedTokenPda, TOKEN_PROGRAM_ADDRESS } from '@solana-program/t
|
|
|
6
6
|
import bs58 from 'bs58';
|
|
7
7
|
import { IPFS } from '../ipfs/IPFS.js';
|
|
8
8
|
import { convertBigIntToNumber } from '../utils/index.js';
|
|
9
|
+
export var JobState;
|
|
10
|
+
(function (JobState) {
|
|
11
|
+
JobState[JobState["QUEUED"] = 0] = "QUEUED";
|
|
12
|
+
JobState[JobState["RUNNING"] = 1] = "RUNNING";
|
|
13
|
+
JobState[JobState["COMPLETED"] = 2] = "COMPLETED";
|
|
14
|
+
JobState[JobState["STOPPED"] = 3] = "STOPPED";
|
|
15
|
+
})(JobState || (JobState = {}));
|
|
16
|
+
export var MarketQueueType;
|
|
17
|
+
(function (MarketQueueType) {
|
|
18
|
+
MarketQueueType[MarketQueueType["JOB_QUEUE"] = 0] = "JOB_QUEUE";
|
|
19
|
+
MarketQueueType[MarketQueueType["NODE_QUEUE"] = 1] = "NODE_QUEUE";
|
|
20
|
+
})(MarketQueueType || (MarketQueueType = {}));
|
|
9
21
|
export class JobsProgram extends BaseProgram {
|
|
10
22
|
constructor(sdk) {
|
|
11
23
|
super(sdk);
|
|
@@ -21,12 +33,12 @@ export class JobsProgram extends BaseProgram {
|
|
|
21
33
|
try {
|
|
22
34
|
const jobAccount = await this.client.fetchJobAccount(this.sdk.solana.rpc, addr);
|
|
23
35
|
const job = this.transformJobAccount(jobAccount);
|
|
24
|
-
if (checkRun && job.state ===
|
|
36
|
+
if (checkRun && job.state === JobState.QUEUED) {
|
|
25
37
|
// If job is queued, check if there is a run account for the job
|
|
26
38
|
const runs = await this.runs({ job: job.address });
|
|
27
39
|
if (runs.length > 0) {
|
|
28
40
|
const run = runs[0];
|
|
29
|
-
job.state =
|
|
41
|
+
job.state = JobState.RUNNING;
|
|
30
42
|
job.timeStart = run.time;
|
|
31
43
|
job.node = run.node;
|
|
32
44
|
}
|
|
@@ -77,10 +89,10 @@ export class JobsProgram extends BaseProgram {
|
|
|
77
89
|
if (checkRuns) {
|
|
78
90
|
const runs = await this.runs();
|
|
79
91
|
jobs.forEach(job => {
|
|
80
|
-
if (job.state ===
|
|
92
|
+
if (job.state === JobState.QUEUED) {
|
|
81
93
|
const run = runs.find(run => run.job === job.address);
|
|
82
94
|
if (run) {
|
|
83
|
-
job.state =
|
|
95
|
+
job.state = JobState.RUNNING;
|
|
84
96
|
job.timeStart = run.time;
|
|
85
97
|
job.node = run.node;
|
|
86
98
|
}
|
|
@@ -168,10 +180,10 @@ export class JobsProgram extends BaseProgram {
|
|
|
168
180
|
if (checkRuns) {
|
|
169
181
|
const runs = await this.runs();
|
|
170
182
|
jobs.forEach(job => {
|
|
171
|
-
if (job.state ===
|
|
183
|
+
if (job.state === JobState.QUEUED) {
|
|
172
184
|
const run = runs.find(run => run.job === job.address);
|
|
173
185
|
if (run) {
|
|
174
|
-
job.state =
|
|
186
|
+
job.state = JobState.RUNNING;
|
|
175
187
|
job.timeStart = run.time;
|
|
176
188
|
job.node = run.node;
|
|
177
189
|
}
|
|
@@ -454,11 +466,13 @@ export class JobsProgram extends BaseProgram {
|
|
|
454
466
|
transformJobAccount(jobAccount) {
|
|
455
467
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
456
468
|
const { discriminator: _, ...jobAccountData } = jobAccount.data;
|
|
469
|
+
const converted = convertBigIntToNumber(jobAccountData);
|
|
457
470
|
return {
|
|
458
471
|
address: jobAccount.address,
|
|
459
|
-
...
|
|
472
|
+
...converted,
|
|
460
473
|
ipfsJob: IPFS.solHashToIpfsHash(jobAccountData.ipfsJob),
|
|
461
474
|
ipfsResult: IPFS.solHashToIpfsHash(jobAccountData.ipfsResult),
|
|
475
|
+
state: converted.state,
|
|
462
476
|
};
|
|
463
477
|
}
|
|
464
478
|
transformRunAccount(runAccount) {
|
|
@@ -472,9 +486,11 @@ export class JobsProgram extends BaseProgram {
|
|
|
472
486
|
transformMarketAccount(marketAccount) {
|
|
473
487
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
474
488
|
const { discriminator: _, ...marketAccountData } = marketAccount.data;
|
|
489
|
+
const converted = convertBigIntToNumber(marketAccountData);
|
|
475
490
|
return {
|
|
476
491
|
address: marketAccount.address,
|
|
477
|
-
...
|
|
492
|
+
...converted,
|
|
493
|
+
queueType: converted.queueType,
|
|
478
494
|
};
|
|
479
495
|
}
|
|
480
496
|
/**
|
|
@@ -6,8 +6,8 @@ include:
|
|
|
6
6
|
|
|
7
7
|
variables:
|
|
8
8
|
NODE_VERSION: 22
|
|
9
|
-
OUTPUT_DIR:
|
|
10
|
-
PURGE_FILE:
|
|
9
|
+
OUTPUT_DIR: .output/public
|
|
10
|
+
PURGE_FILE: purge.json
|
|
11
11
|
|
|
12
12
|
.npm:
|
|
13
13
|
image: node:$NODE_VERSION
|
|
@@ -42,9 +42,9 @@ pages:
|
|
|
42
42
|
then
|
|
43
43
|
apt update
|
|
44
44
|
apt install -y jq
|
|
45
|
-
find $OUTPUT_DIR -type f | sed "s/${OUTPUT_DIR//\//\\/}/https:\/\/$FQDN/g" | jq -R -s -c 'split("\n")[:-1]' >
|
|
45
|
+
find $OUTPUT_DIR -type f | sed "s/${OUTPUT_DIR//\//\\/}/https:\/\/$FQDN/g" | jq -R -s -c 'split("\n")[:-1]' > ../../$PURGE_FILE
|
|
46
46
|
fi
|
|
47
|
-
- mv $OUTPUT_DIR public
|
|
47
|
+
- mv $OUTPUT_DIR ../../public
|
|
48
48
|
artifacts:
|
|
49
49
|
paths:
|
|
50
50
|
- public
|
|
@@ -16,6 +16,12 @@ export default defineNuxtConfig({
|
|
|
16
16
|
define: {
|
|
17
17
|
global: 'globalThis',
|
|
18
18
|
},
|
|
19
|
+
resolve: {
|
|
20
|
+
alias: {
|
|
21
|
+
// Force gill to use browser build instead of node build
|
|
22
|
+
'gill/node': 'gill/browser',
|
|
23
|
+
}
|
|
24
|
+
},
|
|
19
25
|
optimizeDeps: {
|
|
20
26
|
include: ['@nosana/kit'],
|
|
21
27
|
exclude: ['gill/node']
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@headlessui/vue": "^1.7.23",
|
|
13
13
|
"@heroicons/vue": "^2.2.0",
|
|
14
|
-
"@nosana/kit": "
|
|
14
|
+
"@nosana/kit": "^0.1.2",
|
|
15
15
|
"@nuxtjs/tailwindcss": "^7.0.0-beta.0",
|
|
16
16
|
"@tailwindcss/typography": "^0.5.16",
|
|
17
17
|
"nuxt": "^3.17.4",
|
|
@@ -25,35 +25,6 @@
|
|
|
25
25
|
"tailwindcss": "^4.1.8"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
|
-
"../..": {
|
|
29
|
-
"name": "@nosana/kit",
|
|
30
|
-
"version": "0.1.1",
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@solana-program/token": "^0.5.1",
|
|
34
|
-
"bs58": "^6.0.0",
|
|
35
|
-
"buffer": "^6.0.3",
|
|
36
|
-
"gill": "^0.9.0"
|
|
37
|
-
},
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@codama/nodes-from-anchor": "^1.2.0",
|
|
40
|
-
"@codama/renderers-js": "^1.2.14",
|
|
41
|
-
"@types/jest": "^29.5.12",
|
|
42
|
-
"@types/node": "^20.11.24",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
44
|
-
"@typescript-eslint/parser": "^7.1.0",
|
|
45
|
-
"codama": "^1.3.0",
|
|
46
|
-
"eslint": "^8.57.0",
|
|
47
|
-
"jest": "^29.7.0",
|
|
48
|
-
"prettier": "^3.2.5",
|
|
49
|
-
"ts-jest": "^29.1.2",
|
|
50
|
-
"ts-node": "^10.9.2",
|
|
51
|
-
"typescript": "^5.3.3"
|
|
52
|
-
},
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=20.18.0"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
28
|
"node_modules/@alloc/quick-lru": {
|
|
58
29
|
"version": "5.2.0",
|
|
59
30
|
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
@@ -1332,8 +1303,19 @@
|
|
|
1332
1303
|
}
|
|
1333
1304
|
},
|
|
1334
1305
|
"node_modules/@nosana/kit": {
|
|
1335
|
-
"
|
|
1336
|
-
"
|
|
1306
|
+
"version": "0.1.2",
|
|
1307
|
+
"resolved": "https://registry.npmjs.org/@nosana/kit/-/kit-0.1.2.tgz",
|
|
1308
|
+
"integrity": "sha512-7kmYU5LEGRN2ZU3i6Lu8RuLwkDdISjtffNaIvsLmHyzg8tRHcU08amZuguwz6JhCqZlynwkrZjQq5YDbIoUNpw==",
|
|
1309
|
+
"license": "MIT",
|
|
1310
|
+
"dependencies": {
|
|
1311
|
+
"@solana-program/token": "^0.5.1",
|
|
1312
|
+
"bs58": "^6.0.0",
|
|
1313
|
+
"buffer": "^6.0.3",
|
|
1314
|
+
"gill": "^0.9.0"
|
|
1315
|
+
},
|
|
1316
|
+
"engines": {
|
|
1317
|
+
"node": ">=20.18.0"
|
|
1318
|
+
}
|
|
1337
1319
|
},
|
|
1338
1320
|
"node_modules/@nuxt/cli": {
|
|
1339
1321
|
"version": "3.25.1",
|
|
@@ -2721,6 +2703,716 @@
|
|
|
2721
2703
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2722
2704
|
}
|
|
2723
2705
|
},
|
|
2706
|
+
"node_modules/@solana-program/address-lookup-table": {
|
|
2707
|
+
"version": "0.7.0",
|
|
2708
|
+
"resolved": "https://registry.npmjs.org/@solana-program/address-lookup-table/-/address-lookup-table-0.7.0.tgz",
|
|
2709
|
+
"integrity": "sha512-dzCeIO5LtiK3bIg0AwO+TPeGURjSG2BKt0c4FRx7105AgLy7uzTktpUzUj6NXAK9SzbirI8HyvHUvw1uvL8O9A==",
|
|
2710
|
+
"license": "Apache-2.0",
|
|
2711
|
+
"peerDependencies": {
|
|
2712
|
+
"@solana/kit": "^2.1.0"
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2715
|
+
"node_modules/@solana-program/compute-budget": {
|
|
2716
|
+
"version": "0.8.0",
|
|
2717
|
+
"resolved": "https://registry.npmjs.org/@solana-program/compute-budget/-/compute-budget-0.8.0.tgz",
|
|
2718
|
+
"integrity": "sha512-qPKxdxaEsFxebZ4K5RPuy7VQIm/tfJLa1+Nlt3KNA8EYQkz9Xm8htdoEaXVrer9kpgzzp9R3I3Bh6omwCM06tQ==",
|
|
2719
|
+
"license": "Apache-2.0",
|
|
2720
|
+
"peerDependencies": {
|
|
2721
|
+
"@solana/kit": "^2.1.0"
|
|
2722
|
+
}
|
|
2723
|
+
},
|
|
2724
|
+
"node_modules/@solana-program/system": {
|
|
2725
|
+
"version": "0.7.0",
|
|
2726
|
+
"resolved": "https://registry.npmjs.org/@solana-program/system/-/system-0.7.0.tgz",
|
|
2727
|
+
"integrity": "sha512-FKTBsKHpvHHNc1ATRm7SlC5nF/VdJtOSjldhcyfMN9R7xo712Mo2jHIzvBgn8zQO5Kg0DcWuKB7268Kv1ocicw==",
|
|
2728
|
+
"license": "Apache-2.0",
|
|
2729
|
+
"peerDependencies": {
|
|
2730
|
+
"@solana/kit": "^2.1.0"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
"node_modules/@solana-program/token": {
|
|
2734
|
+
"version": "0.5.1",
|
|
2735
|
+
"resolved": "https://registry.npmjs.org/@solana-program/token/-/token-0.5.1.tgz",
|
|
2736
|
+
"integrity": "sha512-bJvynW5q9SFuVOZ5vqGVkmaPGA0MCC+m9jgJj1nk5m20I389/ms69ASnhWGoOPNcie7S9OwBX0gTj2fiyWpfag==",
|
|
2737
|
+
"license": "Apache-2.0",
|
|
2738
|
+
"peerDependencies": {
|
|
2739
|
+
"@solana/kit": "^2.1.0"
|
|
2740
|
+
}
|
|
2741
|
+
},
|
|
2742
|
+
"node_modules/@solana-program/token-2022": {
|
|
2743
|
+
"version": "0.4.2",
|
|
2744
|
+
"resolved": "https://registry.npmjs.org/@solana-program/token-2022/-/token-2022-0.4.2.tgz",
|
|
2745
|
+
"integrity": "sha512-zIpR5t4s9qEU3hZKupzIBxJ6nUV5/UVyIT400tu9vT1HMs5JHxaTTsb5GUhYjiiTvNwU0MQavbwc4Dl29L0Xvw==",
|
|
2746
|
+
"license": "Apache-2.0",
|
|
2747
|
+
"peerDependencies": {
|
|
2748
|
+
"@solana/kit": "^2.1.0",
|
|
2749
|
+
"@solana/sysvars": "^2.1.0"
|
|
2750
|
+
}
|
|
2751
|
+
},
|
|
2752
|
+
"node_modules/@solana/accounts": {
|
|
2753
|
+
"version": "2.1.1",
|
|
2754
|
+
"resolved": "https://registry.npmjs.org/@solana/accounts/-/accounts-2.1.1.tgz",
|
|
2755
|
+
"integrity": "sha512-Q9mG0o/6oyiUSw1CXCkG50TWlYiODJr3ZilEDLIyXpYJzOstRZM4XOzbRACveX4PXFoufPzpR1sSVK6qfcUUCw==",
|
|
2756
|
+
"license": "MIT",
|
|
2757
|
+
"dependencies": {
|
|
2758
|
+
"@solana/addresses": "2.1.1",
|
|
2759
|
+
"@solana/codecs-core": "2.1.1",
|
|
2760
|
+
"@solana/codecs-strings": "2.1.1",
|
|
2761
|
+
"@solana/errors": "2.1.1",
|
|
2762
|
+
"@solana/rpc-spec": "2.1.1",
|
|
2763
|
+
"@solana/rpc-types": "2.1.1"
|
|
2764
|
+
},
|
|
2765
|
+
"engines": {
|
|
2766
|
+
"node": ">=20.18.0"
|
|
2767
|
+
},
|
|
2768
|
+
"peerDependencies": {
|
|
2769
|
+
"typescript": ">=5.3.3"
|
|
2770
|
+
}
|
|
2771
|
+
},
|
|
2772
|
+
"node_modules/@solana/addresses": {
|
|
2773
|
+
"version": "2.1.1",
|
|
2774
|
+
"resolved": "https://registry.npmjs.org/@solana/addresses/-/addresses-2.1.1.tgz",
|
|
2775
|
+
"integrity": "sha512-yX6+brBXFmirxXDJCBDNKDYbGZHMZHaZS4NJWZs31DTe5To3Ky3Y9g3wFEGAX242kfNyJcgg5OeoBuZ7vdFycQ==",
|
|
2776
|
+
"license": "MIT",
|
|
2777
|
+
"dependencies": {
|
|
2778
|
+
"@solana/assertions": "2.1.1",
|
|
2779
|
+
"@solana/codecs-core": "2.1.1",
|
|
2780
|
+
"@solana/codecs-strings": "2.1.1",
|
|
2781
|
+
"@solana/errors": "2.1.1",
|
|
2782
|
+
"@solana/nominal-types": "2.1.1"
|
|
2783
|
+
},
|
|
2784
|
+
"engines": {
|
|
2785
|
+
"node": ">=20.18.0"
|
|
2786
|
+
},
|
|
2787
|
+
"peerDependencies": {
|
|
2788
|
+
"typescript": ">=5.3.3"
|
|
2789
|
+
}
|
|
2790
|
+
},
|
|
2791
|
+
"node_modules/@solana/assertions": {
|
|
2792
|
+
"version": "2.1.1",
|
|
2793
|
+
"resolved": "https://registry.npmjs.org/@solana/assertions/-/assertions-2.1.1.tgz",
|
|
2794
|
+
"integrity": "sha512-ln6dXkliyb9ybqLGFf5Gn+LJaPZGmer9KloIFfHiiSfYFdoAqOu6+pVY+323SKWXHG+hHl9VkwuZYpSp02OroA==",
|
|
2795
|
+
"license": "MIT",
|
|
2796
|
+
"dependencies": {
|
|
2797
|
+
"@solana/errors": "2.1.1"
|
|
2798
|
+
},
|
|
2799
|
+
"engines": {
|
|
2800
|
+
"node": ">=20.18.0"
|
|
2801
|
+
},
|
|
2802
|
+
"peerDependencies": {
|
|
2803
|
+
"typescript": ">=5.3.3"
|
|
2804
|
+
}
|
|
2805
|
+
},
|
|
2806
|
+
"node_modules/@solana/codecs": {
|
|
2807
|
+
"version": "2.1.1",
|
|
2808
|
+
"resolved": "https://registry.npmjs.org/@solana/codecs/-/codecs-2.1.1.tgz",
|
|
2809
|
+
"integrity": "sha512-89Fv22fZ5dNiXjOKh6I3U1D/lVO/dF/cPHexdiqjS5k5R5uKeK3506rhcnc4ciawQAoOkDwHzW+HitUumF2PJg==",
|
|
2810
|
+
"license": "MIT",
|
|
2811
|
+
"dependencies": {
|
|
2812
|
+
"@solana/codecs-core": "2.1.1",
|
|
2813
|
+
"@solana/codecs-data-structures": "2.1.1",
|
|
2814
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
2815
|
+
"@solana/codecs-strings": "2.1.1",
|
|
2816
|
+
"@solana/options": "2.1.1"
|
|
2817
|
+
},
|
|
2818
|
+
"engines": {
|
|
2819
|
+
"node": ">=20.18.0"
|
|
2820
|
+
},
|
|
2821
|
+
"peerDependencies": {
|
|
2822
|
+
"typescript": ">=5.3.3"
|
|
2823
|
+
}
|
|
2824
|
+
},
|
|
2825
|
+
"node_modules/@solana/codecs-core": {
|
|
2826
|
+
"version": "2.1.1",
|
|
2827
|
+
"resolved": "https://registry.npmjs.org/@solana/codecs-core/-/codecs-core-2.1.1.tgz",
|
|
2828
|
+
"integrity": "sha512-iPQW3UZ2Vi7QFBo2r9tw0NubtH8EdrhhmZulx6lC8V5a+qjaxovtM/q/UW2BTNpqqHLfO0tIcLyBLrNH4HTWPg==",
|
|
2829
|
+
"license": "MIT",
|
|
2830
|
+
"dependencies": {
|
|
2831
|
+
"@solana/errors": "2.1.1"
|
|
2832
|
+
},
|
|
2833
|
+
"engines": {
|
|
2834
|
+
"node": ">=20.18.0"
|
|
2835
|
+
},
|
|
2836
|
+
"peerDependencies": {
|
|
2837
|
+
"typescript": ">=5.3.3"
|
|
2838
|
+
}
|
|
2839
|
+
},
|
|
2840
|
+
"node_modules/@solana/codecs-data-structures": {
|
|
2841
|
+
"version": "2.1.1",
|
|
2842
|
+
"resolved": "https://registry.npmjs.org/@solana/codecs-data-structures/-/codecs-data-structures-2.1.1.tgz",
|
|
2843
|
+
"integrity": "sha512-OcR7FIhWDFqg6gEslbs2GVKeDstGcSDpkZo9SeV4bm2RLd1EZfxGhWW+yHZfHqOZiIkw9w+aY45bFgKrsLQmFw==",
|
|
2844
|
+
"license": "MIT",
|
|
2845
|
+
"dependencies": {
|
|
2846
|
+
"@solana/codecs-core": "2.1.1",
|
|
2847
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
2848
|
+
"@solana/errors": "2.1.1"
|
|
2849
|
+
},
|
|
2850
|
+
"engines": {
|
|
2851
|
+
"node": ">=20.18.0"
|
|
2852
|
+
},
|
|
2853
|
+
"peerDependencies": {
|
|
2854
|
+
"typescript": ">=5.3.3"
|
|
2855
|
+
}
|
|
2856
|
+
},
|
|
2857
|
+
"node_modules/@solana/codecs-numbers": {
|
|
2858
|
+
"version": "2.1.1",
|
|
2859
|
+
"resolved": "https://registry.npmjs.org/@solana/codecs-numbers/-/codecs-numbers-2.1.1.tgz",
|
|
2860
|
+
"integrity": "sha512-m20IUPJhPUmPkHSlZ2iMAjJ7PaYUvlMtFhCQYzm9BEBSI6OCvXTG3GAPpAnSGRBfg5y+QNqqmKn4QHU3B6zzCQ==",
|
|
2861
|
+
"license": "MIT",
|
|
2862
|
+
"dependencies": {
|
|
2863
|
+
"@solana/codecs-core": "2.1.1",
|
|
2864
|
+
"@solana/errors": "2.1.1"
|
|
2865
|
+
},
|
|
2866
|
+
"engines": {
|
|
2867
|
+
"node": ">=20.18.0"
|
|
2868
|
+
},
|
|
2869
|
+
"peerDependencies": {
|
|
2870
|
+
"typescript": ">=5.3.3"
|
|
2871
|
+
}
|
|
2872
|
+
},
|
|
2873
|
+
"node_modules/@solana/codecs-strings": {
|
|
2874
|
+
"version": "2.1.1",
|
|
2875
|
+
"resolved": "https://registry.npmjs.org/@solana/codecs-strings/-/codecs-strings-2.1.1.tgz",
|
|
2876
|
+
"integrity": "sha512-uhj+A7eT6IJn4nuoX8jDdvZa7pjyZyN+k64EZ8+aUtJGt5Ft4NjRM8Jl5LljwYBWKQCgouVuigZHtTO2yAWExA==",
|
|
2877
|
+
"license": "MIT",
|
|
2878
|
+
"dependencies": {
|
|
2879
|
+
"@solana/codecs-core": "2.1.1",
|
|
2880
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
2881
|
+
"@solana/errors": "2.1.1"
|
|
2882
|
+
},
|
|
2883
|
+
"engines": {
|
|
2884
|
+
"node": ">=20.18.0"
|
|
2885
|
+
},
|
|
2886
|
+
"peerDependencies": {
|
|
2887
|
+
"fastestsmallesttextencoderdecoder": "^1.0.22",
|
|
2888
|
+
"typescript": ">=5.3.3"
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
"node_modules/@solana/errors": {
|
|
2892
|
+
"version": "2.1.1",
|
|
2893
|
+
"resolved": "https://registry.npmjs.org/@solana/errors/-/errors-2.1.1.tgz",
|
|
2894
|
+
"integrity": "sha512-sj6DaWNbSJFvLzT8UZoabMefQUfSW/8tXK7NTiagsDmh+Q87eyQDDC9L3z+mNmx9b6dEf6z660MOIplDD2nfEw==",
|
|
2895
|
+
"license": "MIT",
|
|
2896
|
+
"dependencies": {
|
|
2897
|
+
"chalk": "^5.4.1",
|
|
2898
|
+
"commander": "^13.1.0"
|
|
2899
|
+
},
|
|
2900
|
+
"bin": {
|
|
2901
|
+
"errors": "bin/cli.mjs"
|
|
2902
|
+
},
|
|
2903
|
+
"engines": {
|
|
2904
|
+
"node": ">=20.18.0"
|
|
2905
|
+
},
|
|
2906
|
+
"peerDependencies": {
|
|
2907
|
+
"typescript": ">=5.3.3"
|
|
2908
|
+
}
|
|
2909
|
+
},
|
|
2910
|
+
"node_modules/@solana/fast-stable-stringify": {
|
|
2911
|
+
"version": "2.1.1",
|
|
2912
|
+
"resolved": "https://registry.npmjs.org/@solana/fast-stable-stringify/-/fast-stable-stringify-2.1.1.tgz",
|
|
2913
|
+
"integrity": "sha512-+gyW8plyMOURMuO9iL6eQBb5wCRwMGLO5T6jBIDGws8KR4tOtIBlQnQnzk81nNepE6lbf8tLCxS8KdYgT/P+wQ==",
|
|
2914
|
+
"license": "MIT",
|
|
2915
|
+
"engines": {
|
|
2916
|
+
"node": ">=20.18.0"
|
|
2917
|
+
},
|
|
2918
|
+
"peerDependencies": {
|
|
2919
|
+
"typescript": ">=5.3.3"
|
|
2920
|
+
}
|
|
2921
|
+
},
|
|
2922
|
+
"node_modules/@solana/functional": {
|
|
2923
|
+
"version": "2.1.1",
|
|
2924
|
+
"resolved": "https://registry.npmjs.org/@solana/functional/-/functional-2.1.1.tgz",
|
|
2925
|
+
"integrity": "sha512-HePJ49Cyz4Mb26zm5holPikm8bzsBH5zLR41+gIw9jJBmIteILNnk2OO1dVkb6aJnP42mdhWSXCo3VVEGT6aEw==",
|
|
2926
|
+
"license": "MIT",
|
|
2927
|
+
"engines": {
|
|
2928
|
+
"node": ">=20.18.0"
|
|
2929
|
+
},
|
|
2930
|
+
"peerDependencies": {
|
|
2931
|
+
"typescript": ">=5.3.3"
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"node_modules/@solana/instructions": {
|
|
2935
|
+
"version": "2.1.1",
|
|
2936
|
+
"resolved": "https://registry.npmjs.org/@solana/instructions/-/instructions-2.1.1.tgz",
|
|
2937
|
+
"integrity": "sha512-Zx48hav9Lu+JuC+U0QJ8B7g7bXQZElXCjvxosIibU2C7ygDuq0ffOly0/irWJv2xmHYm6z8Hm1ILbZ5w0GhDQQ==",
|
|
2938
|
+
"license": "MIT",
|
|
2939
|
+
"dependencies": {
|
|
2940
|
+
"@solana/codecs-core": "2.1.1",
|
|
2941
|
+
"@solana/errors": "2.1.1"
|
|
2942
|
+
},
|
|
2943
|
+
"engines": {
|
|
2944
|
+
"node": ">=20.18.0"
|
|
2945
|
+
},
|
|
2946
|
+
"peerDependencies": {
|
|
2947
|
+
"typescript": ">=5.3.3"
|
|
2948
|
+
}
|
|
2949
|
+
},
|
|
2950
|
+
"node_modules/@solana/keys": {
|
|
2951
|
+
"version": "2.1.1",
|
|
2952
|
+
"resolved": "https://registry.npmjs.org/@solana/keys/-/keys-2.1.1.tgz",
|
|
2953
|
+
"integrity": "sha512-SXuhUz1c2mVnPnB+9Z9Yw6HPluIZbMlSByr+vPFLgaPYM356bRcNnu1pa28tONiQzRBFvl9qL08SL0OaYsmqPg==",
|
|
2954
|
+
"license": "MIT",
|
|
2955
|
+
"dependencies": {
|
|
2956
|
+
"@solana/assertions": "2.1.1",
|
|
2957
|
+
"@solana/codecs-core": "2.1.1",
|
|
2958
|
+
"@solana/codecs-strings": "2.1.1",
|
|
2959
|
+
"@solana/errors": "2.1.1",
|
|
2960
|
+
"@solana/nominal-types": "2.1.1"
|
|
2961
|
+
},
|
|
2962
|
+
"engines": {
|
|
2963
|
+
"node": ">=20.18.0"
|
|
2964
|
+
},
|
|
2965
|
+
"peerDependencies": {
|
|
2966
|
+
"typescript": ">=5.3.3"
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
"node_modules/@solana/kit": {
|
|
2970
|
+
"version": "2.1.1",
|
|
2971
|
+
"resolved": "https://registry.npmjs.org/@solana/kit/-/kit-2.1.1.tgz",
|
|
2972
|
+
"integrity": "sha512-vV0otDSO9HFWIkAv7lxfeR7W6ruS/kqFYzTeRI+EuaZCgKdueavZnx9ydbpMCXis3BZ4Ao+k/ebzVWXMVvz+Lw==",
|
|
2973
|
+
"license": "MIT",
|
|
2974
|
+
"dependencies": {
|
|
2975
|
+
"@solana/accounts": "2.1.1",
|
|
2976
|
+
"@solana/addresses": "2.1.1",
|
|
2977
|
+
"@solana/codecs": "2.1.1",
|
|
2978
|
+
"@solana/errors": "2.1.1",
|
|
2979
|
+
"@solana/functional": "2.1.1",
|
|
2980
|
+
"@solana/instructions": "2.1.1",
|
|
2981
|
+
"@solana/keys": "2.1.1",
|
|
2982
|
+
"@solana/programs": "2.1.1",
|
|
2983
|
+
"@solana/rpc": "2.1.1",
|
|
2984
|
+
"@solana/rpc-parsed-types": "2.1.1",
|
|
2985
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
2986
|
+
"@solana/rpc-subscriptions": "2.1.1",
|
|
2987
|
+
"@solana/rpc-types": "2.1.1",
|
|
2988
|
+
"@solana/signers": "2.1.1",
|
|
2989
|
+
"@solana/sysvars": "2.1.1",
|
|
2990
|
+
"@solana/transaction-confirmation": "2.1.1",
|
|
2991
|
+
"@solana/transaction-messages": "2.1.1",
|
|
2992
|
+
"@solana/transactions": "2.1.1"
|
|
2993
|
+
},
|
|
2994
|
+
"engines": {
|
|
2995
|
+
"node": ">=20.18.0"
|
|
2996
|
+
},
|
|
2997
|
+
"peerDependencies": {
|
|
2998
|
+
"typescript": ">=5.3.3"
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
3001
|
+
"node_modules/@solana/nominal-types": {
|
|
3002
|
+
"version": "2.1.1",
|
|
3003
|
+
"resolved": "https://registry.npmjs.org/@solana/nominal-types/-/nominal-types-2.1.1.tgz",
|
|
3004
|
+
"integrity": "sha512-EpdDhuoATsm9bmuduv6yoNm1EKCz2tlq13nAazaVyQvkMBHhVelyT/zq0ruUplQZbl7qyYr5hG7p1SfGgQbgSQ==",
|
|
3005
|
+
"license": "MIT",
|
|
3006
|
+
"engines": {
|
|
3007
|
+
"node": ">=20.18.0"
|
|
3008
|
+
},
|
|
3009
|
+
"peerDependencies": {
|
|
3010
|
+
"typescript": ">=5.3.3"
|
|
3011
|
+
}
|
|
3012
|
+
},
|
|
3013
|
+
"node_modules/@solana/options": {
|
|
3014
|
+
"version": "2.1.1",
|
|
3015
|
+
"resolved": "https://registry.npmjs.org/@solana/options/-/options-2.1.1.tgz",
|
|
3016
|
+
"integrity": "sha512-rnEExUGVOAV79kiFUEl/51gmSbBYxlcuw2VPnbAV/q53mIHoTgCwDD576N9A8wFftxaJHQFBdNuKiRrnU/fFHA==",
|
|
3017
|
+
"license": "MIT",
|
|
3018
|
+
"dependencies": {
|
|
3019
|
+
"@solana/codecs-core": "2.1.1",
|
|
3020
|
+
"@solana/codecs-data-structures": "2.1.1",
|
|
3021
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
3022
|
+
"@solana/codecs-strings": "2.1.1",
|
|
3023
|
+
"@solana/errors": "2.1.1"
|
|
3024
|
+
},
|
|
3025
|
+
"engines": {
|
|
3026
|
+
"node": ">=20.18.0"
|
|
3027
|
+
},
|
|
3028
|
+
"peerDependencies": {
|
|
3029
|
+
"typescript": ">=5.3.3"
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
3032
|
+
"node_modules/@solana/programs": {
|
|
3033
|
+
"version": "2.1.1",
|
|
3034
|
+
"resolved": "https://registry.npmjs.org/@solana/programs/-/programs-2.1.1.tgz",
|
|
3035
|
+
"integrity": "sha512-fVOA4SEijrIrpG7GoBWhid43w3pT7RTfmMYciVKMb17s2GcnLLcTDOahPf0mlIctLtbF8PgImtzUkXQyuFGr8Q==",
|
|
3036
|
+
"license": "MIT",
|
|
3037
|
+
"dependencies": {
|
|
3038
|
+
"@solana/addresses": "2.1.1",
|
|
3039
|
+
"@solana/errors": "2.1.1"
|
|
3040
|
+
},
|
|
3041
|
+
"engines": {
|
|
3042
|
+
"node": ">=20.18.0"
|
|
3043
|
+
},
|
|
3044
|
+
"peerDependencies": {
|
|
3045
|
+
"typescript": ">=5.3.3"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"node_modules/@solana/promises": {
|
|
3049
|
+
"version": "2.1.1",
|
|
3050
|
+
"resolved": "https://registry.npmjs.org/@solana/promises/-/promises-2.1.1.tgz",
|
|
3051
|
+
"integrity": "sha512-8M+QBgJAQD0nhHzaezwwHH4WWfJEBPiiPAjMNBbbbTHA8+oYFIGgY1HwDUePK8nrT1Q1dX3gC+epBCqBi/nnGg==",
|
|
3052
|
+
"license": "MIT",
|
|
3053
|
+
"engines": {
|
|
3054
|
+
"node": ">=20.18.0"
|
|
3055
|
+
},
|
|
3056
|
+
"peerDependencies": {
|
|
3057
|
+
"typescript": ">=5.3.3"
|
|
3058
|
+
}
|
|
3059
|
+
},
|
|
3060
|
+
"node_modules/@solana/rpc": {
|
|
3061
|
+
"version": "2.1.1",
|
|
3062
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc/-/rpc-2.1.1.tgz",
|
|
3063
|
+
"integrity": "sha512-X15xAx8U0ATznkoNGPUkGIuxTIOmdew1pjQRHAtPSKQTiPbAnO1sowpt4UT7V7bB6zKPu+xKvhFizUuon0PZxg==",
|
|
3064
|
+
"license": "MIT",
|
|
3065
|
+
"dependencies": {
|
|
3066
|
+
"@solana/errors": "2.1.1",
|
|
3067
|
+
"@solana/fast-stable-stringify": "2.1.1",
|
|
3068
|
+
"@solana/functional": "2.1.1",
|
|
3069
|
+
"@solana/rpc-api": "2.1.1",
|
|
3070
|
+
"@solana/rpc-spec": "2.1.1",
|
|
3071
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
3072
|
+
"@solana/rpc-transformers": "2.1.1",
|
|
3073
|
+
"@solana/rpc-transport-http": "2.1.1",
|
|
3074
|
+
"@solana/rpc-types": "2.1.1"
|
|
3075
|
+
},
|
|
3076
|
+
"engines": {
|
|
3077
|
+
"node": ">=20.18.0"
|
|
3078
|
+
},
|
|
3079
|
+
"peerDependencies": {
|
|
3080
|
+
"typescript": ">=5.3.3"
|
|
3081
|
+
}
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/@solana/rpc-api": {
|
|
3084
|
+
"version": "2.1.1",
|
|
3085
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-api/-/rpc-api-2.1.1.tgz",
|
|
3086
|
+
"integrity": "sha512-MTBuoRA9HtxW+CRpj1Ls5XVhDe00g8mW2Ib4/0k6ThFS0+cmjf+O78d8hgjQMqTtuzzSLZ4355+C7XEAuzSQ4g==",
|
|
3087
|
+
"license": "MIT",
|
|
3088
|
+
"dependencies": {
|
|
3089
|
+
"@solana/addresses": "2.1.1",
|
|
3090
|
+
"@solana/codecs-core": "2.1.1",
|
|
3091
|
+
"@solana/codecs-strings": "2.1.1",
|
|
3092
|
+
"@solana/errors": "2.1.1",
|
|
3093
|
+
"@solana/keys": "2.1.1",
|
|
3094
|
+
"@solana/rpc-parsed-types": "2.1.1",
|
|
3095
|
+
"@solana/rpc-spec": "2.1.1",
|
|
3096
|
+
"@solana/rpc-transformers": "2.1.1",
|
|
3097
|
+
"@solana/rpc-types": "2.1.1",
|
|
3098
|
+
"@solana/transaction-messages": "2.1.1",
|
|
3099
|
+
"@solana/transactions": "2.1.1"
|
|
3100
|
+
},
|
|
3101
|
+
"engines": {
|
|
3102
|
+
"node": ">=20.18.0"
|
|
3103
|
+
},
|
|
3104
|
+
"peerDependencies": {
|
|
3105
|
+
"typescript": ">=5.3.3"
|
|
3106
|
+
}
|
|
3107
|
+
},
|
|
3108
|
+
"node_modules/@solana/rpc-parsed-types": {
|
|
3109
|
+
"version": "2.1.1",
|
|
3110
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-parsed-types/-/rpc-parsed-types-2.1.1.tgz",
|
|
3111
|
+
"integrity": "sha512-+n1IWYYglevvNE1neMiLOH6W67EzmWj8GaRlwGxcyu6MwSc/8x1bd2hnEkgK6md+ObPOxoOBdxQXIY/xnZgLcw==",
|
|
3112
|
+
"license": "MIT",
|
|
3113
|
+
"engines": {
|
|
3114
|
+
"node": ">=20.18.0"
|
|
3115
|
+
},
|
|
3116
|
+
"peerDependencies": {
|
|
3117
|
+
"typescript": ">=5.3.3"
|
|
3118
|
+
}
|
|
3119
|
+
},
|
|
3120
|
+
"node_modules/@solana/rpc-spec": {
|
|
3121
|
+
"version": "2.1.1",
|
|
3122
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-spec/-/rpc-spec-2.1.1.tgz",
|
|
3123
|
+
"integrity": "sha512-3Hd21XpaKtW3tG0oXAUlc1k0hX7/eqHpf8Gg744sr9G3ib5gT7EopcZRsH5LdESgS0nbv/c75TznCXjaUyRi+g==",
|
|
3124
|
+
"license": "MIT",
|
|
3125
|
+
"dependencies": {
|
|
3126
|
+
"@solana/errors": "2.1.1",
|
|
3127
|
+
"@solana/rpc-spec-types": "2.1.1"
|
|
3128
|
+
},
|
|
3129
|
+
"engines": {
|
|
3130
|
+
"node": ">=20.18.0"
|
|
3131
|
+
},
|
|
3132
|
+
"peerDependencies": {
|
|
3133
|
+
"typescript": ">=5.3.3"
|
|
3134
|
+
}
|
|
3135
|
+
},
|
|
3136
|
+
"node_modules/@solana/rpc-spec-types": {
|
|
3137
|
+
"version": "2.1.1",
|
|
3138
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-spec-types/-/rpc-spec-types-2.1.1.tgz",
|
|
3139
|
+
"integrity": "sha512-3/G/MTi/c70TVZcB0DJjh5AGV7xqOYrjrpnIg+rLZuH65qHMimWiTHj0k8lxTzRMrN06Ed0+Q7SCw9hO/grTHA==",
|
|
3140
|
+
"license": "MIT",
|
|
3141
|
+
"engines": {
|
|
3142
|
+
"node": ">=20.18.0"
|
|
3143
|
+
},
|
|
3144
|
+
"peerDependencies": {
|
|
3145
|
+
"typescript": ">=5.3.3"
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
"node_modules/@solana/rpc-subscriptions": {
|
|
3149
|
+
"version": "2.1.1",
|
|
3150
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-subscriptions/-/rpc-subscriptions-2.1.1.tgz",
|
|
3151
|
+
"integrity": "sha512-xGLIuJHxg0oCNiS40NW/5BPxHM5RurLcEmBAN1VmVtINWTm8wSbEo85a5q7cbMlPP4Vu/28lD7IITjS5qb84UQ==",
|
|
3152
|
+
"license": "MIT",
|
|
3153
|
+
"dependencies": {
|
|
3154
|
+
"@solana/errors": "2.1.1",
|
|
3155
|
+
"@solana/fast-stable-stringify": "2.1.1",
|
|
3156
|
+
"@solana/functional": "2.1.1",
|
|
3157
|
+
"@solana/promises": "2.1.1",
|
|
3158
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
3159
|
+
"@solana/rpc-subscriptions-api": "2.1.1",
|
|
3160
|
+
"@solana/rpc-subscriptions-channel-websocket": "2.1.1",
|
|
3161
|
+
"@solana/rpc-subscriptions-spec": "2.1.1",
|
|
3162
|
+
"@solana/rpc-transformers": "2.1.1",
|
|
3163
|
+
"@solana/rpc-types": "2.1.1",
|
|
3164
|
+
"@solana/subscribable": "2.1.1"
|
|
3165
|
+
},
|
|
3166
|
+
"engines": {
|
|
3167
|
+
"node": ">=20.18.0"
|
|
3168
|
+
},
|
|
3169
|
+
"peerDependencies": {
|
|
3170
|
+
"typescript": ">=5.3.3"
|
|
3171
|
+
}
|
|
3172
|
+
},
|
|
3173
|
+
"node_modules/@solana/rpc-subscriptions-api": {
|
|
3174
|
+
"version": "2.1.1",
|
|
3175
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-subscriptions-api/-/rpc-subscriptions-api-2.1.1.tgz",
|
|
3176
|
+
"integrity": "sha512-b4JuVScYGaEgO3jszYf7LqXdJK4GoUIevXcyQWq4Zk+R7P41VxGQWa2kzdPX9LIi+UGBmCThdRBfgOYyyHRKDg==",
|
|
3177
|
+
"license": "MIT",
|
|
3178
|
+
"dependencies": {
|
|
3179
|
+
"@solana/addresses": "2.1.1",
|
|
3180
|
+
"@solana/keys": "2.1.1",
|
|
3181
|
+
"@solana/rpc-subscriptions-spec": "2.1.1",
|
|
3182
|
+
"@solana/rpc-transformers": "2.1.1",
|
|
3183
|
+
"@solana/rpc-types": "2.1.1",
|
|
3184
|
+
"@solana/transaction-messages": "2.1.1",
|
|
3185
|
+
"@solana/transactions": "2.1.1"
|
|
3186
|
+
},
|
|
3187
|
+
"engines": {
|
|
3188
|
+
"node": ">=20.18.0"
|
|
3189
|
+
},
|
|
3190
|
+
"peerDependencies": {
|
|
3191
|
+
"typescript": ">=5.3.3"
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
3194
|
+
"node_modules/@solana/rpc-subscriptions-channel-websocket": {
|
|
3195
|
+
"version": "2.1.1",
|
|
3196
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-subscriptions-channel-websocket/-/rpc-subscriptions-channel-websocket-2.1.1.tgz",
|
|
3197
|
+
"integrity": "sha512-xEDnMXnwMtKDEpzmIXTkxxvLqGsxqlKILmyfGsQOMJ9RHYkHmz/8MarHcjnYhyZ5lrs2irN/wExUNlSZTegSEw==",
|
|
3198
|
+
"license": "MIT",
|
|
3199
|
+
"dependencies": {
|
|
3200
|
+
"@solana/errors": "2.1.1",
|
|
3201
|
+
"@solana/functional": "2.1.1",
|
|
3202
|
+
"@solana/rpc-subscriptions-spec": "2.1.1",
|
|
3203
|
+
"@solana/subscribable": "2.1.1"
|
|
3204
|
+
},
|
|
3205
|
+
"engines": {
|
|
3206
|
+
"node": ">=20.18.0"
|
|
3207
|
+
},
|
|
3208
|
+
"peerDependencies": {
|
|
3209
|
+
"typescript": ">=5.3.3",
|
|
3210
|
+
"ws": "^8.18.0"
|
|
3211
|
+
}
|
|
3212
|
+
},
|
|
3213
|
+
"node_modules/@solana/rpc-subscriptions-spec": {
|
|
3214
|
+
"version": "2.1.1",
|
|
3215
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-subscriptions-spec/-/rpc-subscriptions-spec-2.1.1.tgz",
|
|
3216
|
+
"integrity": "sha512-ANT5Tub/ZqqewRtklz02km8iCUe0qwBGi3wsKTgiX7kRx3izHn6IHl90w1Y19wPd692mfZW8+Pk5PUrMSXhR3g==",
|
|
3217
|
+
"license": "MIT",
|
|
3218
|
+
"dependencies": {
|
|
3219
|
+
"@solana/errors": "2.1.1",
|
|
3220
|
+
"@solana/promises": "2.1.1",
|
|
3221
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
3222
|
+
"@solana/subscribable": "2.1.1"
|
|
3223
|
+
},
|
|
3224
|
+
"engines": {
|
|
3225
|
+
"node": ">=20.18.0"
|
|
3226
|
+
},
|
|
3227
|
+
"peerDependencies": {
|
|
3228
|
+
"typescript": ">=5.3.3"
|
|
3229
|
+
}
|
|
3230
|
+
},
|
|
3231
|
+
"node_modules/@solana/rpc-transformers": {
|
|
3232
|
+
"version": "2.1.1",
|
|
3233
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-transformers/-/rpc-transformers-2.1.1.tgz",
|
|
3234
|
+
"integrity": "sha512-rBOCDQjOI1eQICkqYFV43SsiPdLcahgnrGuDNorS3uOe70pQRPs1PTuuEHqLBwuu9GRw89ifRy49aBNUNmX8uQ==",
|
|
3235
|
+
"license": "MIT",
|
|
3236
|
+
"dependencies": {
|
|
3237
|
+
"@solana/errors": "2.1.1",
|
|
3238
|
+
"@solana/functional": "2.1.1",
|
|
3239
|
+
"@solana/nominal-types": "2.1.1",
|
|
3240
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
3241
|
+
"@solana/rpc-types": "2.1.1"
|
|
3242
|
+
},
|
|
3243
|
+
"engines": {
|
|
3244
|
+
"node": ">=20.18.0"
|
|
3245
|
+
},
|
|
3246
|
+
"peerDependencies": {
|
|
3247
|
+
"typescript": ">=5.3.3"
|
|
3248
|
+
}
|
|
3249
|
+
},
|
|
3250
|
+
"node_modules/@solana/rpc-transport-http": {
|
|
3251
|
+
"version": "2.1.1",
|
|
3252
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-transport-http/-/rpc-transport-http-2.1.1.tgz",
|
|
3253
|
+
"integrity": "sha512-Wp7018VaPqhodQjQTDlCM7vTYlm3AdmRyvPZiwv5uzFgnC8B0xhEZW+ZSt1zkSXS6WrKqtufobuBFGtfG6v5KQ==",
|
|
3254
|
+
"license": "MIT",
|
|
3255
|
+
"dependencies": {
|
|
3256
|
+
"@solana/errors": "2.1.1",
|
|
3257
|
+
"@solana/rpc-spec": "2.1.1",
|
|
3258
|
+
"@solana/rpc-spec-types": "2.1.1",
|
|
3259
|
+
"undici-types": "^7.9.0"
|
|
3260
|
+
},
|
|
3261
|
+
"engines": {
|
|
3262
|
+
"node": ">=20.18.0"
|
|
3263
|
+
},
|
|
3264
|
+
"peerDependencies": {
|
|
3265
|
+
"typescript": ">=5.3.3"
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
"node_modules/@solana/rpc-types": {
|
|
3269
|
+
"version": "2.1.1",
|
|
3270
|
+
"resolved": "https://registry.npmjs.org/@solana/rpc-types/-/rpc-types-2.1.1.tgz",
|
|
3271
|
+
"integrity": "sha512-IaQKiWyTVvDoD0/3IlUxRY3OADj3cEjfLFCp1JvEdl0ANGReHp4jtqUqrYEeAdN/tGmGoiHt3n4x61wR0zFoJA==",
|
|
3272
|
+
"license": "MIT",
|
|
3273
|
+
"dependencies": {
|
|
3274
|
+
"@solana/addresses": "2.1.1",
|
|
3275
|
+
"@solana/codecs-core": "2.1.1",
|
|
3276
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
3277
|
+
"@solana/codecs-strings": "2.1.1",
|
|
3278
|
+
"@solana/errors": "2.1.1",
|
|
3279
|
+
"@solana/nominal-types": "2.1.1"
|
|
3280
|
+
},
|
|
3281
|
+
"engines": {
|
|
3282
|
+
"node": ">=20.18.0"
|
|
3283
|
+
},
|
|
3284
|
+
"peerDependencies": {
|
|
3285
|
+
"typescript": ">=5.3.3"
|
|
3286
|
+
}
|
|
3287
|
+
},
|
|
3288
|
+
"node_modules/@solana/signers": {
|
|
3289
|
+
"version": "2.1.1",
|
|
3290
|
+
"resolved": "https://registry.npmjs.org/@solana/signers/-/signers-2.1.1.tgz",
|
|
3291
|
+
"integrity": "sha512-OfYEUgrJSrBDTC43kSQCz9A12A9+6xt2azmG8pP78yXN/bDzDmYF2i4nSzg/JzjjA5hBBYtDJ+15qpS/4cSgug==",
|
|
3292
|
+
"license": "MIT",
|
|
3293
|
+
"dependencies": {
|
|
3294
|
+
"@solana/addresses": "2.1.1",
|
|
3295
|
+
"@solana/codecs-core": "2.1.1",
|
|
3296
|
+
"@solana/errors": "2.1.1",
|
|
3297
|
+
"@solana/instructions": "2.1.1",
|
|
3298
|
+
"@solana/keys": "2.1.1",
|
|
3299
|
+
"@solana/nominal-types": "2.1.1",
|
|
3300
|
+
"@solana/transaction-messages": "2.1.1",
|
|
3301
|
+
"@solana/transactions": "2.1.1"
|
|
3302
|
+
},
|
|
3303
|
+
"engines": {
|
|
3304
|
+
"node": ">=20.18.0"
|
|
3305
|
+
},
|
|
3306
|
+
"peerDependencies": {
|
|
3307
|
+
"typescript": ">=5.3.3"
|
|
3308
|
+
}
|
|
3309
|
+
},
|
|
3310
|
+
"node_modules/@solana/subscribable": {
|
|
3311
|
+
"version": "2.1.1",
|
|
3312
|
+
"resolved": "https://registry.npmjs.org/@solana/subscribable/-/subscribable-2.1.1.tgz",
|
|
3313
|
+
"integrity": "sha512-k6qe/Iu94nVtapap9Ei+3mm14gx1H+7YgB6n2bj9qJCdVN6z6ZN9nPtDY2ViIH4qAnxyh7pJKF7iCwNC/iALcw==",
|
|
3314
|
+
"license": "MIT",
|
|
3315
|
+
"dependencies": {
|
|
3316
|
+
"@solana/errors": "2.1.1"
|
|
3317
|
+
},
|
|
3318
|
+
"engines": {
|
|
3319
|
+
"node": ">=20.18.0"
|
|
3320
|
+
},
|
|
3321
|
+
"peerDependencies": {
|
|
3322
|
+
"typescript": ">=5.3.3"
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
"node_modules/@solana/sysvars": {
|
|
3326
|
+
"version": "2.1.1",
|
|
3327
|
+
"resolved": "https://registry.npmjs.org/@solana/sysvars/-/sysvars-2.1.1.tgz",
|
|
3328
|
+
"integrity": "sha512-bG7hNFpFqZm6qk763z5/P9g9Nxc0WXe+aYl6CQSptaPsmqUz1GhlBjAov9ePVFb29MmyMZ5bA+kmCTytiHK1fQ==",
|
|
3329
|
+
"license": "MIT",
|
|
3330
|
+
"dependencies": {
|
|
3331
|
+
"@solana/accounts": "2.1.1",
|
|
3332
|
+
"@solana/codecs": "2.1.1",
|
|
3333
|
+
"@solana/errors": "2.1.1",
|
|
3334
|
+
"@solana/rpc-types": "2.1.1"
|
|
3335
|
+
},
|
|
3336
|
+
"engines": {
|
|
3337
|
+
"node": ">=20.18.0"
|
|
3338
|
+
},
|
|
3339
|
+
"peerDependencies": {
|
|
3340
|
+
"typescript": ">=5.3.3"
|
|
3341
|
+
}
|
|
3342
|
+
},
|
|
3343
|
+
"node_modules/@solana/transaction-confirmation": {
|
|
3344
|
+
"version": "2.1.1",
|
|
3345
|
+
"resolved": "https://registry.npmjs.org/@solana/transaction-confirmation/-/transaction-confirmation-2.1.1.tgz",
|
|
3346
|
+
"integrity": "sha512-hXv0D80u1jNEq2/k1o9IBXXq7+JYg8x4tm0kVWjzvdJjYow8EkQay5quq5o0ciFfWqlOyFwYRC7AGrKc3imE7A==",
|
|
3347
|
+
"license": "MIT",
|
|
3348
|
+
"dependencies": {
|
|
3349
|
+
"@solana/addresses": "2.1.1",
|
|
3350
|
+
"@solana/codecs-strings": "2.1.1",
|
|
3351
|
+
"@solana/errors": "2.1.1",
|
|
3352
|
+
"@solana/keys": "2.1.1",
|
|
3353
|
+
"@solana/promises": "2.1.1",
|
|
3354
|
+
"@solana/rpc": "2.1.1",
|
|
3355
|
+
"@solana/rpc-subscriptions": "2.1.1",
|
|
3356
|
+
"@solana/rpc-types": "2.1.1",
|
|
3357
|
+
"@solana/transaction-messages": "2.1.1",
|
|
3358
|
+
"@solana/transactions": "2.1.1"
|
|
3359
|
+
},
|
|
3360
|
+
"engines": {
|
|
3361
|
+
"node": ">=20.18.0"
|
|
3362
|
+
},
|
|
3363
|
+
"peerDependencies": {
|
|
3364
|
+
"typescript": ">=5.3.3"
|
|
3365
|
+
}
|
|
3366
|
+
},
|
|
3367
|
+
"node_modules/@solana/transaction-messages": {
|
|
3368
|
+
"version": "2.1.1",
|
|
3369
|
+
"resolved": "https://registry.npmjs.org/@solana/transaction-messages/-/transaction-messages-2.1.1.tgz",
|
|
3370
|
+
"integrity": "sha512-sDf3OWV5X1C8huqsap+DyHIBAUenNJd3h7j/WI9MeIJZdGEtqxssGa2ixhecsMaevtUBKKJM9RqAvfTdRTAnLw==",
|
|
3371
|
+
"license": "MIT",
|
|
3372
|
+
"dependencies": {
|
|
3373
|
+
"@solana/addresses": "2.1.1",
|
|
3374
|
+
"@solana/codecs-core": "2.1.1",
|
|
3375
|
+
"@solana/codecs-data-structures": "2.1.1",
|
|
3376
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
3377
|
+
"@solana/errors": "2.1.1",
|
|
3378
|
+
"@solana/functional": "2.1.1",
|
|
3379
|
+
"@solana/instructions": "2.1.1",
|
|
3380
|
+
"@solana/nominal-types": "2.1.1",
|
|
3381
|
+
"@solana/rpc-types": "2.1.1"
|
|
3382
|
+
},
|
|
3383
|
+
"engines": {
|
|
3384
|
+
"node": ">=20.18.0"
|
|
3385
|
+
},
|
|
3386
|
+
"peerDependencies": {
|
|
3387
|
+
"typescript": ">=5.3.3"
|
|
3388
|
+
}
|
|
3389
|
+
},
|
|
3390
|
+
"node_modules/@solana/transactions": {
|
|
3391
|
+
"version": "2.1.1",
|
|
3392
|
+
"resolved": "https://registry.npmjs.org/@solana/transactions/-/transactions-2.1.1.tgz",
|
|
3393
|
+
"integrity": "sha512-LX/7XfcHH9o0Kpv+tpnCl56IaatD/0sMWw9NnaeZ2f7pJyav9Jmeu5LJXvdHJw2jh277UEqc9bHwKruoMrtOTw==",
|
|
3394
|
+
"license": "MIT",
|
|
3395
|
+
"dependencies": {
|
|
3396
|
+
"@solana/addresses": "2.1.1",
|
|
3397
|
+
"@solana/codecs-core": "2.1.1",
|
|
3398
|
+
"@solana/codecs-data-structures": "2.1.1",
|
|
3399
|
+
"@solana/codecs-numbers": "2.1.1",
|
|
3400
|
+
"@solana/codecs-strings": "2.1.1",
|
|
3401
|
+
"@solana/errors": "2.1.1",
|
|
3402
|
+
"@solana/functional": "2.1.1",
|
|
3403
|
+
"@solana/instructions": "2.1.1",
|
|
3404
|
+
"@solana/keys": "2.1.1",
|
|
3405
|
+
"@solana/nominal-types": "2.1.1",
|
|
3406
|
+
"@solana/rpc-types": "2.1.1",
|
|
3407
|
+
"@solana/transaction-messages": "2.1.1"
|
|
3408
|
+
},
|
|
3409
|
+
"engines": {
|
|
3410
|
+
"node": ">=20.18.0"
|
|
3411
|
+
},
|
|
3412
|
+
"peerDependencies": {
|
|
3413
|
+
"typescript": ">=5.3.3"
|
|
3414
|
+
}
|
|
3415
|
+
},
|
|
2724
3416
|
"node_modules/@speed-highlight/core": {
|
|
2725
3417
|
"version": "1.2.7",
|
|
2726
3418
|
"resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.7.tgz",
|
|
@@ -3078,6 +3770,13 @@
|
|
|
3078
3770
|
"undici-types": "~7.8.0"
|
|
3079
3771
|
}
|
|
3080
3772
|
},
|
|
3773
|
+
"node_modules/@types/node/node_modules/undici-types": {
|
|
3774
|
+
"version": "7.8.0",
|
|
3775
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz",
|
|
3776
|
+
"integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==",
|
|
3777
|
+
"license": "MIT",
|
|
3778
|
+
"optional": true
|
|
3779
|
+
},
|
|
3081
3780
|
"node_modules/@types/normalize-package-data": {
|
|
3082
3781
|
"version": "2.4.4",
|
|
3083
3782
|
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
|
|
@@ -3858,6 +4557,12 @@
|
|
|
3858
4557
|
"license": "Apache-2.0",
|
|
3859
4558
|
"optional": true
|
|
3860
4559
|
},
|
|
4560
|
+
"node_modules/base-x": {
|
|
4561
|
+
"version": "5.0.1",
|
|
4562
|
+
"resolved": "https://registry.npmjs.org/base-x/-/base-x-5.0.1.tgz",
|
|
4563
|
+
"integrity": "sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==",
|
|
4564
|
+
"license": "MIT"
|
|
4565
|
+
},
|
|
3861
4566
|
"node_modules/base64-js": {
|
|
3862
4567
|
"version": "1.5.1",
|
|
3863
4568
|
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
@@ -3955,6 +4660,15 @@
|
|
|
3955
4660
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
3956
4661
|
}
|
|
3957
4662
|
},
|
|
4663
|
+
"node_modules/bs58": {
|
|
4664
|
+
"version": "6.0.0",
|
|
4665
|
+
"resolved": "https://registry.npmjs.org/bs58/-/bs58-6.0.0.tgz",
|
|
4666
|
+
"integrity": "sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==",
|
|
4667
|
+
"license": "MIT",
|
|
4668
|
+
"dependencies": {
|
|
4669
|
+
"base-x": "^5.0.0"
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
3958
4672
|
"node_modules/buffer": {
|
|
3959
4673
|
"version": "6.0.3",
|
|
3960
4674
|
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
@@ -4127,6 +4841,18 @@
|
|
|
4127
4841
|
],
|
|
4128
4842
|
"license": "CC-BY-4.0"
|
|
4129
4843
|
},
|
|
4844
|
+
"node_modules/chalk": {
|
|
4845
|
+
"version": "5.4.1",
|
|
4846
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
|
|
4847
|
+
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
|
|
4848
|
+
"license": "MIT",
|
|
4849
|
+
"engines": {
|
|
4850
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
4851
|
+
},
|
|
4852
|
+
"funding": {
|
|
4853
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
4854
|
+
}
|
|
4855
|
+
},
|
|
4130
4856
|
"node_modules/chokidar": {
|
|
4131
4857
|
"version": "4.0.3",
|
|
4132
4858
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
@@ -4343,12 +5069,12 @@
|
|
|
4343
5069
|
}
|
|
4344
5070
|
},
|
|
4345
5071
|
"node_modules/commander": {
|
|
4346
|
-
"version": "
|
|
4347
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-
|
|
4348
|
-
"integrity": "sha512
|
|
5072
|
+
"version": "13.1.0",
|
|
5073
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
5074
|
+
"integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
|
|
4349
5075
|
"license": "MIT",
|
|
4350
5076
|
"engines": {
|
|
4351
|
-
"node": ">=
|
|
5077
|
+
"node": ">=18"
|
|
4352
5078
|
}
|
|
4353
5079
|
},
|
|
4354
5080
|
"node_modules/common-path-prefix": {
|
|
@@ -5569,6 +6295,13 @@
|
|
|
5569
6295
|
"url": "https://github.com/sponsors/antfu"
|
|
5570
6296
|
}
|
|
5571
6297
|
},
|
|
6298
|
+
"node_modules/fastestsmallesttextencoderdecoder": {
|
|
6299
|
+
"version": "1.0.22",
|
|
6300
|
+
"resolved": "https://registry.npmjs.org/fastestsmallesttextencoderdecoder/-/fastestsmallesttextencoderdecoder-1.0.22.tgz",
|
|
6301
|
+
"integrity": "sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==",
|
|
6302
|
+
"license": "CC0-1.0",
|
|
6303
|
+
"peer": true
|
|
6304
|
+
},
|
|
5572
6305
|
"node_modules/fastq": {
|
|
5573
6306
|
"version": "1.19.1",
|
|
5574
6307
|
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
|
@@ -5880,6 +6613,28 @@
|
|
|
5880
6613
|
"giget": "dist/cli.mjs"
|
|
5881
6614
|
}
|
|
5882
6615
|
},
|
|
6616
|
+
"node_modules/gill": {
|
|
6617
|
+
"version": "0.9.2",
|
|
6618
|
+
"resolved": "https://registry.npmjs.org/gill/-/gill-0.9.2.tgz",
|
|
6619
|
+
"integrity": "sha512-snaKVEOAAib2KMy8441b7JAboQOk1HCc7JGpwFSd9S2qy4Zrln+i10BrUXMcMZl7WPRpVIVmIwLwnr9uMVBMQg==",
|
|
6620
|
+
"license": "MIT",
|
|
6621
|
+
"dependencies": {
|
|
6622
|
+
"@solana-program/address-lookup-table": "^0.7.0",
|
|
6623
|
+
"@solana-program/compute-budget": "^0.8.0",
|
|
6624
|
+
"@solana-program/system": "^0.7.0",
|
|
6625
|
+
"@solana-program/token-2022": "^0.4.1",
|
|
6626
|
+
"@solana/assertions": "^2.1.1",
|
|
6627
|
+
"@solana/codecs": "^2.1.1",
|
|
6628
|
+
"@solana/kit": "^2.1.1",
|
|
6629
|
+
"@solana/transaction-confirmation": "^2.1.1"
|
|
6630
|
+
},
|
|
6631
|
+
"engines": {
|
|
6632
|
+
"node": ">=20.18.0"
|
|
6633
|
+
},
|
|
6634
|
+
"peerDependencies": {
|
|
6635
|
+
"typescript": ">=5"
|
|
6636
|
+
}
|
|
6637
|
+
},
|
|
5883
6638
|
"node_modules/git-up": {
|
|
5884
6639
|
"version": "8.1.1",
|
|
5885
6640
|
"resolved": "https://registry.npmjs.org/git-up/-/git-up-8.1.1.tgz",
|
|
@@ -6664,6 +7419,15 @@
|
|
|
6664
7419
|
"node": ">=8"
|
|
6665
7420
|
}
|
|
6666
7421
|
},
|
|
7422
|
+
"node_modules/lambda-local/node_modules/commander": {
|
|
7423
|
+
"version": "10.0.1",
|
|
7424
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
|
|
7425
|
+
"integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
|
|
7426
|
+
"license": "MIT",
|
|
7427
|
+
"engines": {
|
|
7428
|
+
"node": ">=14"
|
|
7429
|
+
}
|
|
7430
|
+
},
|
|
6667
7431
|
"node_modules/launch-editor": {
|
|
6668
7432
|
"version": "2.10.0",
|
|
6669
7433
|
"resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz",
|
|
@@ -10243,11 +11007,10 @@
|
|
|
10243
11007
|
}
|
|
10244
11008
|
},
|
|
10245
11009
|
"node_modules/undici-types": {
|
|
10246
|
-
"version": "7.
|
|
10247
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.
|
|
10248
|
-
"integrity": "sha512-
|
|
10249
|
-
"license": "MIT"
|
|
10250
|
-
"optional": true
|
|
11010
|
+
"version": "7.10.0",
|
|
11011
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz",
|
|
11012
|
+
"integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==",
|
|
11013
|
+
"license": "MIT"
|
|
10251
11014
|
},
|
|
10252
11015
|
"node_modules/unenv": {
|
|
10253
11016
|
"version": "2.0.0-rc.17",
|