@geek-fun/serverlessinsight 0.4.0 → 0.5.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.
- package/.gitattributes +1 -0
- package/README.md +108 -8
- package/README.zh-CN.md +52 -8
- package/dist/package.json +37 -35
- package/dist/src/commands/deploy.js +17 -7
- package/dist/src/commands/destroy.js +27 -4
- package/dist/src/commands/forceUnlock.js +61 -0
- package/dist/src/commands/index.js +86 -14
- package/dist/src/commands/local.js +10 -1
- package/dist/src/commands/plan.js +33 -0
- package/dist/src/commands/template.js +3 -1
- package/dist/src/commands/validate.js +2 -1
- package/dist/src/common/aliyunClient/apigwOperations.js +652 -0
- package/dist/src/common/aliyunClient/dnsOperations.js +90 -0
- package/dist/src/common/aliyunClient/ecsOperations.js +141 -0
- package/dist/src/common/aliyunClient/esOperations.js +219 -0
- package/dist/src/common/aliyunClient/fc3Operations.js +270 -0
- package/dist/src/common/aliyunClient/index.js +141 -0
- package/dist/src/common/aliyunClient/nasOperations.js +233 -0
- package/dist/src/common/aliyunClient/ossOperations.js +237 -0
- package/dist/src/common/aliyunClient/ramOperations.js +205 -0
- package/dist/src/common/aliyunClient/rdsOperations.js +206 -0
- package/dist/src/common/aliyunClient/slsOperations.js +218 -0
- package/dist/src/common/aliyunClient/tablestoreOperations.js +199 -0
- package/dist/src/common/aliyunClient/types.js +2 -0
- package/dist/src/common/constants.js +7 -1
- package/dist/src/common/context.js +32 -14
- package/dist/src/common/credentials.js +39 -0
- package/dist/src/common/dependencyGraph/graph.js +280 -0
- package/dist/src/common/dependencyGraph/index.js +18 -0
- package/dist/src/common/dependencyGraph/types.js +2 -0
- package/dist/src/common/fileUtils.js +16 -0
- package/dist/src/common/hashUtils.js +121 -0
- package/dist/src/common/iacHelper.js +25 -97
- package/dist/src/common/imsClient.js +4 -0
- package/dist/src/common/index.js +7 -2
- package/dist/src/common/lockManager.js +212 -0
- package/dist/src/common/logger.js +89 -6
- package/dist/src/common/providerEnum.js +2 -3
- package/dist/src/common/runtimeMapper.js +160 -0
- package/dist/src/common/scfClient.js +84 -0
- package/dist/src/common/stateManager.js +107 -0
- package/dist/src/common/tencentClient/cosOperations.js +287 -0
- package/dist/src/common/tencentClient/esOperations.js +156 -0
- package/dist/src/common/tencentClient/index.js +116 -0
- package/dist/src/common/tencentClient/scfOperations.js +141 -0
- package/dist/src/common/tencentClient/tdsqlcOperations.js +211 -0
- package/dist/src/common/tencentClient/types.js +17 -0
- package/dist/src/lang/en.js +254 -0
- package/dist/src/lang/index.js +28 -8
- package/dist/src/lang/zh-CN.js +229 -0
- package/dist/src/parser/bucketParser.js +25 -12
- package/dist/src/parser/databaseParser.js +14 -10
- package/dist/src/parser/functionParser.js +19 -6
- package/dist/src/parser/parseUtils.js +74 -0
- package/dist/src/parser/tableParser.js +19 -17
- package/dist/src/stack/aliyunStack/apigwExecutor.js +84 -0
- package/dist/src/stack/aliyunStack/apigwPlanner.js +118 -0
- package/dist/src/stack/aliyunStack/apigwResource.js +339 -0
- package/dist/src/stack/aliyunStack/apigwTypes.js +125 -0
- package/dist/src/stack/aliyunStack/databaseExecutor.js +112 -0
- package/dist/src/stack/aliyunStack/databasePlanner.js +128 -0
- package/dist/src/stack/aliyunStack/databaseResource.js +228 -0
- package/dist/src/stack/aliyunStack/deployer.js +133 -0
- package/dist/src/stack/aliyunStack/destroyer.js +114 -0
- package/dist/src/stack/aliyunStack/esServerlessTypes.js +141 -0
- package/dist/src/stack/aliyunStack/fc3Executor.js +91 -0
- package/dist/src/stack/aliyunStack/fc3Planner.js +77 -0
- package/dist/src/stack/aliyunStack/fc3Resource.js +511 -0
- package/dist/src/stack/aliyunStack/fc3Types.js +76 -0
- package/dist/src/stack/aliyunStack/index.js +40 -0
- package/dist/src/stack/aliyunStack/ossExecutor.js +91 -0
- package/dist/src/stack/aliyunStack/ossPlanner.js +76 -0
- package/dist/src/stack/aliyunStack/ossResource.js +196 -0
- package/dist/src/stack/aliyunStack/ossTypes.js +50 -0
- package/dist/src/stack/aliyunStack/planner.js +37 -0
- package/dist/src/stack/aliyunStack/rdsTypes.js +217 -0
- package/dist/src/stack/aliyunStack/tablestoreExecutor.js +92 -0
- package/dist/src/stack/aliyunStack/tablestorePlanner.js +94 -0
- package/dist/src/stack/aliyunStack/tablestoreResource.js +120 -0
- package/dist/src/stack/aliyunStack/tablestoreTypes.js +77 -0
- package/dist/src/stack/bucketTypes.js +17 -0
- package/dist/src/stack/deploy.js +24 -77
- package/dist/src/stack/localStack/bucket.js +11 -6
- package/dist/src/stack/localStack/event.js +10 -5
- package/dist/src/stack/localStack/function.js +13 -7
- package/dist/src/stack/localStack/functionRunner.js +1 -1
- package/dist/src/stack/localStack/localServer.js +7 -6
- package/dist/src/stack/scfStack/cosExecutor.js +91 -0
- package/dist/src/stack/scfStack/cosPlanner.js +76 -0
- package/dist/src/stack/scfStack/cosResource.js +126 -0
- package/dist/src/stack/scfStack/cosTypes.js +46 -0
- package/dist/src/stack/scfStack/deployer.js +91 -0
- package/dist/src/stack/scfStack/destroyer.js +88 -0
- package/dist/src/stack/scfStack/esServerlessExecutor.js +105 -0
- package/dist/src/stack/scfStack/esServerlessPlanner.js +86 -0
- package/dist/src/stack/scfStack/esServerlessResource.js +94 -0
- package/dist/src/stack/scfStack/esServerlessTypes.js +48 -0
- package/dist/src/stack/scfStack/index.js +35 -0
- package/dist/src/stack/scfStack/planner.js +91 -0
- package/dist/src/stack/scfStack/scfExecutor.js +91 -0
- package/dist/src/stack/scfStack/scfPlanner.js +78 -0
- package/dist/src/stack/scfStack/scfResource.js +216 -0
- package/dist/src/stack/scfStack/scfTypes.js +41 -0
- package/dist/src/stack/scfStack/tdsqlcExecutor.js +105 -0
- package/dist/src/stack/scfStack/tdsqlcPlanner.js +90 -0
- package/dist/src/stack/scfStack/tdsqlcResource.js +146 -0
- package/dist/src/stack/scfStack/tdsqlcTypes.js +59 -0
- package/dist/src/types/domains/lock.js +2 -0
- package/dist/src/types/domains/resolvable.js +2 -0
- package/dist/src/types/domains/state.js +19 -0
- package/dist/src/types/index.js +4 -0
- package/dist/src/validator/bucketSchema.js +4 -10
- package/dist/src/validator/databaseSchema.js +36 -36
- package/dist/src/validator/eventSchema.js +3 -2
- package/dist/src/validator/functionSchema.js +51 -46
- package/dist/src/validator/iacSchema.js +52 -3
- package/dist/src/validator/rootSchema.js +47 -1
- package/dist/src/validator/tableschema.js +9 -8
- package/dist/src/validator/templateRefSchema.js +23 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +37 -35
- package/samples/README_TENCENT_COS.md +486 -0
- package/samples/README_TENCENT_SCF.md +272 -0
- package/samples/aliyun-poc-api.yml +1 -1
- package/samples/aliyun-poc-bucket.yml +0 -1
- package/samples/aliyun-poc-domain.yml +0 -1
- package/samples/aliyun-poc-es.yml +14 -13
- package/samples/aliyun-poc-rds.yml +0 -2
- package/samples/aliyun-poc-table.yml +1 -3
- package/samples/tencent-poc-cos.yml +20 -0
- package/samples/tencent-poc-scf.yml +36 -0
- package/dist/src/commands/index.d.ts +0 -2
- package/dist/src/common/index.d.ts +0 -11
- package/dist/src/common/rosAssets.js +0 -178
- package/dist/src/common/rosClient.js +0 -198
- package/dist/src/index.d.ts +0 -1
- package/dist/src/lang/index.d.ts +0 -3
- package/dist/src/parser/index.d.ts +0 -3
- package/dist/src/stack/index.d.ts +0 -1
- package/dist/src/stack/localStack/index.d.ts +0 -5
- package/dist/src/stack/rfsStack/index.d.ts +0 -9
- package/dist/src/stack/rosStack/bootstrap.js +0 -187
- package/dist/src/stack/rosStack/bucket.js +0 -127
- package/dist/src/stack/rosStack/database.js +0 -313
- package/dist/src/stack/rosStack/event.js +0 -143
- package/dist/src/stack/rosStack/function.js +0 -259
- package/dist/src/stack/rosStack/index.d.ts +0 -7
- package/dist/src/stack/rosStack/index.js +0 -75
- package/dist/src/stack/rosStack/stage.js +0 -46
- package/dist/src/stack/rosStack/table.js +0 -95
- package/dist/src/stack/rosStack/tag.js +0 -11
- package/dist/src/stack/rosStack/vars.js +0 -49
- package/dist/src/types/index.d.ts +0 -55
- package/dist/src/types/localStack/index.d.ts +0 -81
- package/dist/src/validator/index.d.ts +0 -1
- package/layers/si-bootstrap-sdk/Dockerfile-aliyuncli +0 -12
- package/layers/si-bootstrap-sdk/README.md +0 -1
- package/layers/si-bootstrap-sdk/package-lock.json +0 -875
- package/layers/si-bootstrap-sdk/package.json +0 -33
|
@@ -1,875 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@geek-fun/si-bootstrap-sdk",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "@geek-fun/si-bootstrap-sdk",
|
|
9
|
-
"version": "1.0.0",
|
|
10
|
-
"license": "Apache-2.0",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@alicloud/credentials": "^2.4.4",
|
|
13
|
-
"@alicloud/openapi-client": "^0.4.15",
|
|
14
|
-
"@alicloud/tablestore20201209": "^1.2.0",
|
|
15
|
-
"pino": "^9.8.0",
|
|
16
|
-
"pino-pretty": "^13.1.1",
|
|
17
|
-
"tablestore": "^5.6.1"
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"@types/tablestore": "^5.1.3",
|
|
21
|
-
"typescript": "^5.9.2"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"node_modules/@alicloud/credentials": {
|
|
25
|
-
"version": "2.4.4",
|
|
26
|
-
"resolved": "https://registry.npmjs.org/@alicloud/credentials/-/credentials-2.4.4.tgz",
|
|
27
|
-
"integrity": "sha512-/eRAGSKcniLIFQ1UCpDhB/IrHUZisQ1sc65ws/c2avxUMpXwH1rWAohb76SVAUJhiF4mwvLzLJM1Mn1XL4Xe/Q==",
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@alicloud/tea-typescript": "^1.8.0",
|
|
31
|
-
"httpx": "^2.3.3",
|
|
32
|
-
"ini": "^1.3.5",
|
|
33
|
-
"kitx": "^2.0.0"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"node_modules/@alicloud/darabonba-array": {
|
|
37
|
-
"version": "0.1.1",
|
|
38
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-array/-/darabonba-array-0.1.1.tgz",
|
|
39
|
-
"integrity": "sha512-UPP7p9//jywqM8EN6BjSbw1ovl/BzqreXdi5FmxT6m3PmFxsxabe+yamjeopyf2Gi0p3WqwJTBCeNji5eYUsJw==",
|
|
40
|
-
"license": "ISC",
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"@alicloud/tea-typescript": "^1.7.1"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"node_modules/@alicloud/darabonba-encode-util": {
|
|
46
|
-
"version": "0.0.2",
|
|
47
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-encode-util/-/darabonba-encode-util-0.0.2.tgz",
|
|
48
|
-
"integrity": "sha512-mlsNctkeqmR0RtgE1Rngyeadi5snLOAHBCWEtYf68d7tyKskosXDTNeZ6VCD/UfrUu4N51ItO8zlpfXiOgeg3A==",
|
|
49
|
-
"license": "ISC",
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"moment": "^2.29.1"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"node_modules/@alicloud/darabonba-map": {
|
|
55
|
-
"version": "0.0.1",
|
|
56
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-map/-/darabonba-map-0.0.1.tgz",
|
|
57
|
-
"integrity": "sha512-2ep+G3YDvuI+dRYVlmER1LVUQDhf9kEItmVB/bbEu1pgKzelcocCwAc79XZQjTcQGFgjDycf3vH87WLDGLFMlw==",
|
|
58
|
-
"license": "ISC",
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@alicloud/tea-typescript": "^1.7.1"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"node_modules/@alicloud/darabonba-signature-util": {
|
|
64
|
-
"version": "0.0.4",
|
|
65
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-signature-util/-/darabonba-signature-util-0.0.4.tgz",
|
|
66
|
-
"integrity": "sha512-I1TtwtAnzLamgqnAaOkN0IGjwkiti//0a7/auyVThdqiC/3kyafSAn6znysWOmzub4mrzac2WiqblZKFcN5NWg==",
|
|
67
|
-
"license": "ISC",
|
|
68
|
-
"dependencies": {
|
|
69
|
-
"@alicloud/darabonba-encode-util": "^0.0.1"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"node_modules/@alicloud/darabonba-signature-util/node_modules/@alicloud/darabonba-encode-util": {
|
|
73
|
-
"version": "0.0.1",
|
|
74
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-encode-util/-/darabonba-encode-util-0.0.1.tgz",
|
|
75
|
-
"integrity": "sha512-Sl5vCRVAYMqwmvXpJLM9hYoCHOMsQlGxaWSGhGWulpKk/NaUBArtoO1B0yHruJf1C5uHhEJIaylYcM48icFHgw==",
|
|
76
|
-
"license": "ISC",
|
|
77
|
-
"dependencies": {
|
|
78
|
-
"@alicloud/tea-typescript": "^1.7.1",
|
|
79
|
-
"moment": "^2.29.1"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"node_modules/@alicloud/darabonba-string": {
|
|
83
|
-
"version": "1.0.3",
|
|
84
|
-
"resolved": "https://registry.npmjs.org/@alicloud/darabonba-string/-/darabonba-string-1.0.3.tgz",
|
|
85
|
-
"integrity": "sha512-NyWwrU8cAIesWk3uHL1Q7pTDTqLkCI/0PmJXC4/4A0MFNAZ9Ouq0iFBsRqvfyUujSSM+WhYLuTfakQXiVLkTMA==",
|
|
86
|
-
"license": "Apache-2.0",
|
|
87
|
-
"dependencies": {
|
|
88
|
-
"@alicloud/tea-typescript": "^1.5.1"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"node_modules/@alicloud/endpoint-util": {
|
|
92
|
-
"version": "0.0.1",
|
|
93
|
-
"resolved": "https://registry.npmjs.org/@alicloud/endpoint-util/-/endpoint-util-0.0.1.tgz",
|
|
94
|
-
"integrity": "sha512-+pH7/KEXup84cHzIL6UJAaPqETvln4yXlD9JzlrqioyCSaWxbug5FUobsiI6fuUOpw5WwoB3fWAtGbFnJ1K3Yg==",
|
|
95
|
-
"license": "Apache-2.0",
|
|
96
|
-
"dependencies": {
|
|
97
|
-
"@alicloud/tea-typescript": "^1.5.1",
|
|
98
|
-
"kitx": "^2.0.0"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"node_modules/@alicloud/gateway-pop": {
|
|
102
|
-
"version": "0.0.6",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/@alicloud/gateway-pop/-/gateway-pop-0.0.6.tgz",
|
|
104
|
-
"integrity": "sha512-KF4I+JvfYuLKc3fWeWYIZ7lOVJ9jRW0sQXdXidZn1DKZ978ncfGf7i0LBfONGk4OxvNb/HD3/0yYhkgZgPbKtA==",
|
|
105
|
-
"license": "ISC",
|
|
106
|
-
"dependencies": {
|
|
107
|
-
"@alicloud/credentials": "^2",
|
|
108
|
-
"@alicloud/darabonba-array": "^0.1.0",
|
|
109
|
-
"@alicloud/darabonba-encode-util": "^0.0.2",
|
|
110
|
-
"@alicloud/darabonba-map": "^0.0.1",
|
|
111
|
-
"@alicloud/darabonba-signature-util": "^0.0.4",
|
|
112
|
-
"@alicloud/darabonba-string": "^1.0.2",
|
|
113
|
-
"@alicloud/endpoint-util": "^0.0.1",
|
|
114
|
-
"@alicloud/gateway-spi": "^0.0.8",
|
|
115
|
-
"@alicloud/openapi-util": "^0.3.2",
|
|
116
|
-
"@alicloud/tea-typescript": "^1.7.1",
|
|
117
|
-
"@alicloud/tea-util": "^1.4.8"
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"node_modules/@alicloud/gateway-spi": {
|
|
121
|
-
"version": "0.0.8",
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@alicloud/gateway-spi/-/gateway-spi-0.0.8.tgz",
|
|
123
|
-
"integrity": "sha512-KM7fu5asjxZPmrz9sJGHJeSU+cNQNOxW+SFmgmAIrITui5hXL2LB+KNRuzWmlwPjnuA2X3/keq9h6++S9jcV5g==",
|
|
124
|
-
"license": "ISC",
|
|
125
|
-
"dependencies": {
|
|
126
|
-
"@alicloud/credentials": "^2",
|
|
127
|
-
"@alicloud/tea-typescript": "^1.7.1"
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"node_modules/@alicloud/openapi-client": {
|
|
131
|
-
"version": "0.4.15",
|
|
132
|
-
"resolved": "https://registry.npmjs.org/@alicloud/openapi-client/-/openapi-client-0.4.15.tgz",
|
|
133
|
-
"integrity": "sha512-4VE0/k5ZdQbAhOSTqniVhuX1k5DUeUMZv74degn3wIWjLY6Bq+hxjaGsaHYlLZ2gA5wUrs8NcI5TE+lIQS3iiA==",
|
|
134
|
-
"license": "ISC",
|
|
135
|
-
"dependencies": {
|
|
136
|
-
"@alicloud/credentials": "^2.4.2",
|
|
137
|
-
"@alicloud/gateway-spi": "^0.0.8",
|
|
138
|
-
"@alicloud/openapi-util": "^0.3.2",
|
|
139
|
-
"@alicloud/tea-typescript": "^1.7.1",
|
|
140
|
-
"@alicloud/tea-util": "1.4.9",
|
|
141
|
-
"@alicloud/tea-xml": "0.0.3"
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
"node_modules/@alicloud/openapi-client/node_modules/@alicloud/tea-util": {
|
|
145
|
-
"version": "1.4.9",
|
|
146
|
-
"resolved": "https://registry.npmjs.org/@alicloud/tea-util/-/tea-util-1.4.9.tgz",
|
|
147
|
-
"integrity": "sha512-S0wz76rGtoPKskQtRTGqeuqBHFj8BqUn0Vh+glXKun2/9UpaaaWmuJwcmtImk6bJZfLYEShDF/kxDmDJoNYiTw==",
|
|
148
|
-
"license": "Apache-2.0",
|
|
149
|
-
"dependencies": {
|
|
150
|
-
"@alicloud/tea-typescript": "^1.5.1",
|
|
151
|
-
"kitx": "^2.0.0"
|
|
152
|
-
}
|
|
153
|
-
},
|
|
154
|
-
"node_modules/@alicloud/openapi-core": {
|
|
155
|
-
"version": "1.0.4",
|
|
156
|
-
"resolved": "https://registry.npmjs.org/@alicloud/openapi-core/-/openapi-core-1.0.4.tgz",
|
|
157
|
-
"integrity": "sha512-e9WK1lKiMOOziuLgNaYWv7FL50FyrcpO+idoLhNmFR7k0Fax4lPht5suBpTBr1PSINg5R1W3eOCm5vaUTrY4lg==",
|
|
158
|
-
"hasInstallScript": true,
|
|
159
|
-
"license": "ISC",
|
|
160
|
-
"dependencies": {
|
|
161
|
-
"@alicloud/credentials": "latest",
|
|
162
|
-
"@alicloud/gateway-pop": "0.0.6",
|
|
163
|
-
"@alicloud/gateway-spi": "^0.0.8",
|
|
164
|
-
"@darabonba/typescript": "^1.0.2"
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
|
-
"node_modules/@alicloud/openapi-util": {
|
|
168
|
-
"version": "0.3.2",
|
|
169
|
-
"resolved": "https://registry.npmjs.org/@alicloud/openapi-util/-/openapi-util-0.3.2.tgz",
|
|
170
|
-
"integrity": "sha512-EC2JvxdcOgMlBAEG0+joOh2IB1um8CPz9EdYuRfTfd1uP8Yc9D8QRUWVGjP6scnj6fWSOaHFlit9H6PrJSyFow==",
|
|
171
|
-
"license": "ISC",
|
|
172
|
-
"dependencies": {
|
|
173
|
-
"@alicloud/tea-typescript": "^1.7.1",
|
|
174
|
-
"@alicloud/tea-util": "^1.3.0",
|
|
175
|
-
"kitx": "^2.1.0",
|
|
176
|
-
"sm3": "^1.0.3"
|
|
177
|
-
}
|
|
178
|
-
},
|
|
179
|
-
"node_modules/@alicloud/tablestore20201209": {
|
|
180
|
-
"version": "1.2.0",
|
|
181
|
-
"resolved": "https://registry.npmjs.org/@alicloud/tablestore20201209/-/tablestore20201209-1.2.0.tgz",
|
|
182
|
-
"integrity": "sha512-e+2TgAlESETR9aBpjJsnIN7/MOvQoV2UkgL9b3wFCH+yJ0ZBvsGqwybC5XHqjsr8R9cgRa6fomTzPCqUD1D8IA==",
|
|
183
|
-
"license": "Apache-2.0",
|
|
184
|
-
"dependencies": {
|
|
185
|
-
"@alicloud/openapi-core": "^1.0.0",
|
|
186
|
-
"@darabonba/typescript": "^1.0.0"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"node_modules/@alicloud/tea-typescript": {
|
|
190
|
-
"version": "1.8.0",
|
|
191
|
-
"resolved": "https://registry.npmjs.org/@alicloud/tea-typescript/-/tea-typescript-1.8.0.tgz",
|
|
192
|
-
"integrity": "sha512-CWXWaquauJf0sW30mgJRVu9aaXyBth5uMBCUc+5vKTK1zlgf3hIqRUjJZbjlwHwQ5y9anwcu18r48nOZb7l2QQ==",
|
|
193
|
-
"license": "ISC",
|
|
194
|
-
"dependencies": {
|
|
195
|
-
"@types/node": "^12.0.2",
|
|
196
|
-
"httpx": "^2.2.6"
|
|
197
|
-
}
|
|
198
|
-
},
|
|
199
|
-
"node_modules/@alicloud/tea-util": {
|
|
200
|
-
"version": "1.4.10",
|
|
201
|
-
"resolved": "https://registry.npmjs.org/@alicloud/tea-util/-/tea-util-1.4.10.tgz",
|
|
202
|
-
"integrity": "sha512-VEsXWP2dlJLvsY2THj+sH++zwxQRz3Y5BQ8EkfnFems36RkngQKYOLsoto5nR6ej1Gf6I+0IOgBXrkRdpNCQ1g==",
|
|
203
|
-
"license": "Apache-2.0",
|
|
204
|
-
"dependencies": {
|
|
205
|
-
"@alicloud/tea-typescript": "^1.5.1",
|
|
206
|
-
"@darabonba/typescript": "^1.0.0",
|
|
207
|
-
"kitx": "^2.0.0"
|
|
208
|
-
}
|
|
209
|
-
},
|
|
210
|
-
"node_modules/@alicloud/tea-xml": {
|
|
211
|
-
"version": "0.0.3",
|
|
212
|
-
"resolved": "https://registry.npmjs.org/@alicloud/tea-xml/-/tea-xml-0.0.3.tgz",
|
|
213
|
-
"integrity": "sha512-+/9GliugjrLglsXVrd1D80EqqKgGpyA0eQ6+1ZdUOYCaRguaSwz44trX3PaxPu/HhIPJg9PsGQQ3cSLXWZjbAA==",
|
|
214
|
-
"license": "Apache-2.0",
|
|
215
|
-
"dependencies": {
|
|
216
|
-
"@alicloud/tea-typescript": "^1",
|
|
217
|
-
"@types/xml2js": "^0.4.5",
|
|
218
|
-
"xml2js": "^0.6.0"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"node_modules/@darabonba/typescript": {
|
|
222
|
-
"version": "1.0.3",
|
|
223
|
-
"resolved": "https://registry.npmjs.org/@darabonba/typescript/-/typescript-1.0.3.tgz",
|
|
224
|
-
"integrity": "sha512-/y2y6wf5TsxD7pCPIm0OvTC+5qV0Tk7HQYxwpIuWRLXQLB0CRDvr6qk4bR6rTLO/JglJa8z2uCGZsaLYpQNqFQ==",
|
|
225
|
-
"license": "Apache License 2.0",
|
|
226
|
-
"dependencies": {
|
|
227
|
-
"@alicloud/tea-typescript": "^1.5.1",
|
|
228
|
-
"httpx": "^2.3.2",
|
|
229
|
-
"lodash": "^4.17.21",
|
|
230
|
-
"moment": "^2.30.1",
|
|
231
|
-
"moment-timezone": "^0.5.45",
|
|
232
|
-
"xml2js": "^0.6.2"
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
"node_modules/@protobufjs/aspromise": {
|
|
236
|
-
"version": "1.1.2",
|
|
237
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
238
|
-
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
239
|
-
"license": "BSD-3-Clause"
|
|
240
|
-
},
|
|
241
|
-
"node_modules/@protobufjs/base64": {
|
|
242
|
-
"version": "1.1.2",
|
|
243
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
244
|
-
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
245
|
-
"license": "BSD-3-Clause"
|
|
246
|
-
},
|
|
247
|
-
"node_modules/@protobufjs/codegen": {
|
|
248
|
-
"version": "2.0.4",
|
|
249
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
|
|
250
|
-
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
|
|
251
|
-
"license": "BSD-3-Clause"
|
|
252
|
-
},
|
|
253
|
-
"node_modules/@protobufjs/eventemitter": {
|
|
254
|
-
"version": "1.1.0",
|
|
255
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
|
|
256
|
-
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
|
|
257
|
-
"license": "BSD-3-Clause"
|
|
258
|
-
},
|
|
259
|
-
"node_modules/@protobufjs/fetch": {
|
|
260
|
-
"version": "1.1.0",
|
|
261
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
|
|
262
|
-
"integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
|
|
263
|
-
"license": "BSD-3-Clause",
|
|
264
|
-
"dependencies": {
|
|
265
|
-
"@protobufjs/aspromise": "^1.1.1",
|
|
266
|
-
"@protobufjs/inquire": "^1.1.0"
|
|
267
|
-
}
|
|
268
|
-
},
|
|
269
|
-
"node_modules/@protobufjs/float": {
|
|
270
|
-
"version": "1.0.2",
|
|
271
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
272
|
-
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
273
|
-
"license": "BSD-3-Clause"
|
|
274
|
-
},
|
|
275
|
-
"node_modules/@protobufjs/inquire": {
|
|
276
|
-
"version": "1.1.0",
|
|
277
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
|
|
278
|
-
"integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
|
|
279
|
-
"license": "BSD-3-Clause"
|
|
280
|
-
},
|
|
281
|
-
"node_modules/@protobufjs/path": {
|
|
282
|
-
"version": "1.1.2",
|
|
283
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
284
|
-
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
285
|
-
"license": "BSD-3-Clause"
|
|
286
|
-
},
|
|
287
|
-
"node_modules/@protobufjs/pool": {
|
|
288
|
-
"version": "1.1.0",
|
|
289
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
290
|
-
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
291
|
-
"license": "BSD-3-Clause"
|
|
292
|
-
},
|
|
293
|
-
"node_modules/@protobufjs/utf8": {
|
|
294
|
-
"version": "1.1.0",
|
|
295
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
|
|
296
|
-
"integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
|
|
297
|
-
"license": "BSD-3-Clause"
|
|
298
|
-
},
|
|
299
|
-
"node_modules/@types/long": {
|
|
300
|
-
"version": "4.0.2",
|
|
301
|
-
"resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz",
|
|
302
|
-
"integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==",
|
|
303
|
-
"license": "MIT"
|
|
304
|
-
},
|
|
305
|
-
"node_modules/@types/node": {
|
|
306
|
-
"version": "12.20.55",
|
|
307
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
|
|
308
|
-
"integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==",
|
|
309
|
-
"license": "MIT"
|
|
310
|
-
},
|
|
311
|
-
"node_modules/@types/tablestore": {
|
|
312
|
-
"version": "5.1.3",
|
|
313
|
-
"resolved": "https://registry.npmjs.org/@types/tablestore/-/tablestore-5.1.3.tgz",
|
|
314
|
-
"integrity": "sha512-/G+o91ZMrMlUueZY9BqxnrSpT8PyDc5uytTlsvIkvrPhF6V50Jr5xH8r0NLjD0aCiAHVheQVlpTuFe1OKVPdgA==",
|
|
315
|
-
"dev": true,
|
|
316
|
-
"license": "MIT",
|
|
317
|
-
"dependencies": {
|
|
318
|
-
"@types/node": "*"
|
|
319
|
-
}
|
|
320
|
-
},
|
|
321
|
-
"node_modules/@types/xml2js": {
|
|
322
|
-
"version": "0.4.14",
|
|
323
|
-
"resolved": "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.14.tgz",
|
|
324
|
-
"integrity": "sha512-4YnrRemBShWRO2QjvUin8ESA41rH+9nQGLUGZV/1IDhi3SL9OhdpNC/MrulTWuptXKwhx/aDxE7toV0f/ypIXQ==",
|
|
325
|
-
"license": "MIT",
|
|
326
|
-
"dependencies": {
|
|
327
|
-
"@types/node": "*"
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
"node_modules/atomic-sleep": {
|
|
331
|
-
"version": "1.0.0",
|
|
332
|
-
"resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
|
|
333
|
-
"integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
|
|
334
|
-
"license": "MIT",
|
|
335
|
-
"engines": {
|
|
336
|
-
"node": ">=8.0.0"
|
|
337
|
-
}
|
|
338
|
-
},
|
|
339
|
-
"node_modules/base64-js": {
|
|
340
|
-
"version": "1.5.1",
|
|
341
|
-
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
342
|
-
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
343
|
-
"funding": [
|
|
344
|
-
{
|
|
345
|
-
"type": "github",
|
|
346
|
-
"url": "https://github.com/sponsors/feross"
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"type": "patreon",
|
|
350
|
-
"url": "https://www.patreon.com/feross"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"type": "consulting",
|
|
354
|
-
"url": "https://feross.org/support"
|
|
355
|
-
}
|
|
356
|
-
],
|
|
357
|
-
"license": "MIT"
|
|
358
|
-
},
|
|
359
|
-
"node_modules/buffer": {
|
|
360
|
-
"version": "4.9.1",
|
|
361
|
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
|
|
362
|
-
"integrity": "sha512-DNK4ruAqtyHaN8Zne7PkBTO+dD1Lr0YfTduMqlIyjvQIoztBkUxrvL+hKeLW8NXFKHOq/2upkxuoS9znQ9bW9A==",
|
|
363
|
-
"deprecated": "This version of 'buffer' is out-of-date. You must update to v4.9.2 or newer",
|
|
364
|
-
"license": "MIT",
|
|
365
|
-
"dependencies": {
|
|
366
|
-
"base64-js": "^1.0.2",
|
|
367
|
-
"ieee754": "^1.1.4",
|
|
368
|
-
"isarray": "^1.0.0"
|
|
369
|
-
}
|
|
370
|
-
},
|
|
371
|
-
"node_modules/colorette": {
|
|
372
|
-
"version": "2.0.20",
|
|
373
|
-
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
|
|
374
|
-
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
375
|
-
"license": "MIT"
|
|
376
|
-
},
|
|
377
|
-
"node_modules/dateformat": {
|
|
378
|
-
"version": "4.6.3",
|
|
379
|
-
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz",
|
|
380
|
-
"integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==",
|
|
381
|
-
"license": "MIT",
|
|
382
|
-
"engines": {
|
|
383
|
-
"node": "*"
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
"node_modules/debug": {
|
|
387
|
-
"version": "4.4.1",
|
|
388
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
|
|
389
|
-
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
|
|
390
|
-
"license": "MIT",
|
|
391
|
-
"dependencies": {
|
|
392
|
-
"ms": "^2.1.3"
|
|
393
|
-
},
|
|
394
|
-
"engines": {
|
|
395
|
-
"node": ">=6.0"
|
|
396
|
-
},
|
|
397
|
-
"peerDependenciesMeta": {
|
|
398
|
-
"supports-color": {
|
|
399
|
-
"optional": true
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
},
|
|
403
|
-
"node_modules/end-of-stream": {
|
|
404
|
-
"version": "1.4.5",
|
|
405
|
-
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
406
|
-
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
407
|
-
"license": "MIT",
|
|
408
|
-
"dependencies": {
|
|
409
|
-
"once": "^1.4.0"
|
|
410
|
-
}
|
|
411
|
-
},
|
|
412
|
-
"node_modules/fast-copy": {
|
|
413
|
-
"version": "3.0.2",
|
|
414
|
-
"resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.2.tgz",
|
|
415
|
-
"integrity": "sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==",
|
|
416
|
-
"license": "MIT"
|
|
417
|
-
},
|
|
418
|
-
"node_modules/fast-redact": {
|
|
419
|
-
"version": "3.5.0",
|
|
420
|
-
"resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz",
|
|
421
|
-
"integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==",
|
|
422
|
-
"license": "MIT",
|
|
423
|
-
"engines": {
|
|
424
|
-
"node": ">=6"
|
|
425
|
-
}
|
|
426
|
-
},
|
|
427
|
-
"node_modules/fast-safe-stringify": {
|
|
428
|
-
"version": "2.1.1",
|
|
429
|
-
"resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
|
|
430
|
-
"integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==",
|
|
431
|
-
"license": "MIT"
|
|
432
|
-
},
|
|
433
|
-
"node_modules/flatbuffers": {
|
|
434
|
-
"version": "1.12.0",
|
|
435
|
-
"resolved": "https://registry.npmjs.org/flatbuffers/-/flatbuffers-1.12.0.tgz",
|
|
436
|
-
"integrity": "sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==",
|
|
437
|
-
"license": "SEE LICENSE IN LICENSE.txt"
|
|
438
|
-
},
|
|
439
|
-
"node_modules/help-me": {
|
|
440
|
-
"version": "5.0.0",
|
|
441
|
-
"resolved": "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz",
|
|
442
|
-
"integrity": "sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==",
|
|
443
|
-
"license": "MIT"
|
|
444
|
-
},
|
|
445
|
-
"node_modules/httpx": {
|
|
446
|
-
"version": "2.3.3",
|
|
447
|
-
"resolved": "https://registry.npmjs.org/httpx/-/httpx-2.3.3.tgz",
|
|
448
|
-
"integrity": "sha512-k1qv94u1b6e+XKCxVbLgYlOypVP9MPGpnN5G/vxFf6tDO4V3xpz3d6FUOY/s8NtPgaq5RBVVgSB+7IHpVxMYzw==",
|
|
449
|
-
"license": "MIT",
|
|
450
|
-
"dependencies": {
|
|
451
|
-
"@types/node": "^20",
|
|
452
|
-
"debug": "^4.1.1"
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
"node_modules/httpx/node_modules/@types/node": {
|
|
456
|
-
"version": "20.19.9",
|
|
457
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.9.tgz",
|
|
458
|
-
"integrity": "sha512-cuVNgarYWZqxRJDQHEB58GEONhOK79QVR/qYx4S7kcUObQvUwvFnYxJuuHUKm2aieN9X3yZB4LZsuYNU1Qphsw==",
|
|
459
|
-
"license": "MIT",
|
|
460
|
-
"dependencies": {
|
|
461
|
-
"undici-types": "~6.21.0"
|
|
462
|
-
}
|
|
463
|
-
},
|
|
464
|
-
"node_modules/ieee754": {
|
|
465
|
-
"version": "1.2.1",
|
|
466
|
-
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
467
|
-
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
468
|
-
"funding": [
|
|
469
|
-
{
|
|
470
|
-
"type": "github",
|
|
471
|
-
"url": "https://github.com/sponsors/feross"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"type": "patreon",
|
|
475
|
-
"url": "https://www.patreon.com/feross"
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
"type": "consulting",
|
|
479
|
-
"url": "https://feross.org/support"
|
|
480
|
-
}
|
|
481
|
-
],
|
|
482
|
-
"license": "BSD-3-Clause"
|
|
483
|
-
},
|
|
484
|
-
"node_modules/ini": {
|
|
485
|
-
"version": "1.3.8",
|
|
486
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
487
|
-
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
|
|
488
|
-
"license": "ISC"
|
|
489
|
-
},
|
|
490
|
-
"node_modules/int64-buffer": {
|
|
491
|
-
"version": "0.1.9",
|
|
492
|
-
"resolved": "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.9.tgz",
|
|
493
|
-
"integrity": "sha512-hTYImck2Z72PmEbnKi7zgRvpkeAHIK0ggY01l89GbglIx3B+BYt5Ef2ospIX/2W/cRaBFH99xL5VnWJQsavAtg==",
|
|
494
|
-
"license": "MIT"
|
|
495
|
-
},
|
|
496
|
-
"node_modules/isarray": {
|
|
497
|
-
"version": "1.0.0",
|
|
498
|
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
499
|
-
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
500
|
-
"license": "MIT"
|
|
501
|
-
},
|
|
502
|
-
"node_modules/joycon": {
|
|
503
|
-
"version": "3.1.1",
|
|
504
|
-
"resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz",
|
|
505
|
-
"integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==",
|
|
506
|
-
"license": "MIT",
|
|
507
|
-
"engines": {
|
|
508
|
-
"node": ">=10"
|
|
509
|
-
}
|
|
510
|
-
},
|
|
511
|
-
"node_modules/kitx": {
|
|
512
|
-
"version": "2.2.0",
|
|
513
|
-
"resolved": "https://registry.npmjs.org/kitx/-/kitx-2.2.0.tgz",
|
|
514
|
-
"integrity": "sha512-tBMwe6AALTBQJb0woQDD40734NKzb0Kzi3k7wQj9ar3AbP9oqhoVrdXPh7rk2r00/glIgd0YbToIUJsnxWMiIg==",
|
|
515
|
-
"license": "MIT",
|
|
516
|
-
"dependencies": {
|
|
517
|
-
"@types/node": "^22.5.4"
|
|
518
|
-
}
|
|
519
|
-
},
|
|
520
|
-
"node_modules/kitx/node_modules/@types/node": {
|
|
521
|
-
"version": "22.17.0",
|
|
522
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.17.0.tgz",
|
|
523
|
-
"integrity": "sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==",
|
|
524
|
-
"license": "MIT",
|
|
525
|
-
"dependencies": {
|
|
526
|
-
"undici-types": "~6.21.0"
|
|
527
|
-
}
|
|
528
|
-
},
|
|
529
|
-
"node_modules/lodash": {
|
|
530
|
-
"version": "4.17.21",
|
|
531
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
532
|
-
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
533
|
-
"license": "MIT"
|
|
534
|
-
},
|
|
535
|
-
"node_modules/long": {
|
|
536
|
-
"version": "4.0.0",
|
|
537
|
-
"resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
|
|
538
|
-
"integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==",
|
|
539
|
-
"license": "Apache-2.0"
|
|
540
|
-
},
|
|
541
|
-
"node_modules/minimist": {
|
|
542
|
-
"version": "1.2.8",
|
|
543
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
544
|
-
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
545
|
-
"license": "MIT",
|
|
546
|
-
"funding": {
|
|
547
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
548
|
-
}
|
|
549
|
-
},
|
|
550
|
-
"node_modules/moment": {
|
|
551
|
-
"version": "2.30.1",
|
|
552
|
-
"resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
|
|
553
|
-
"integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
|
|
554
|
-
"license": "MIT",
|
|
555
|
-
"engines": {
|
|
556
|
-
"node": "*"
|
|
557
|
-
}
|
|
558
|
-
},
|
|
559
|
-
"node_modules/moment-timezone": {
|
|
560
|
-
"version": "0.5.48",
|
|
561
|
-
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.48.tgz",
|
|
562
|
-
"integrity": "sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==",
|
|
563
|
-
"license": "MIT",
|
|
564
|
-
"dependencies": {
|
|
565
|
-
"moment": "^2.29.4"
|
|
566
|
-
},
|
|
567
|
-
"engines": {
|
|
568
|
-
"node": "*"
|
|
569
|
-
}
|
|
570
|
-
},
|
|
571
|
-
"node_modules/ms": {
|
|
572
|
-
"version": "2.1.3",
|
|
573
|
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
574
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
575
|
-
"license": "MIT"
|
|
576
|
-
},
|
|
577
|
-
"node_modules/on-exit-leak-free": {
|
|
578
|
-
"version": "2.1.2",
|
|
579
|
-
"resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz",
|
|
580
|
-
"integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==",
|
|
581
|
-
"license": "MIT",
|
|
582
|
-
"engines": {
|
|
583
|
-
"node": ">=14.0.0"
|
|
584
|
-
}
|
|
585
|
-
},
|
|
586
|
-
"node_modules/once": {
|
|
587
|
-
"version": "1.4.0",
|
|
588
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
589
|
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
590
|
-
"license": "ISC",
|
|
591
|
-
"dependencies": {
|
|
592
|
-
"wrappy": "1"
|
|
593
|
-
}
|
|
594
|
-
},
|
|
595
|
-
"node_modules/pino": {
|
|
596
|
-
"version": "9.8.0",
|
|
597
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-9.8.0.tgz",
|
|
598
|
-
"integrity": "sha512-L5+rV1wL7vGAcxXP7sPpN5lrJ07Piruka6ArXr7EWBXxdVWjJshGVX8suFsiusJVcGKDGUFfbgbnKdg+VAC+0g==",
|
|
599
|
-
"license": "MIT",
|
|
600
|
-
"dependencies": {
|
|
601
|
-
"atomic-sleep": "^1.0.0",
|
|
602
|
-
"fast-redact": "^3.1.1",
|
|
603
|
-
"on-exit-leak-free": "^2.1.0",
|
|
604
|
-
"pino-abstract-transport": "^2.0.0",
|
|
605
|
-
"pino-std-serializers": "^7.0.0",
|
|
606
|
-
"process-warning": "^5.0.0",
|
|
607
|
-
"quick-format-unescaped": "^4.0.3",
|
|
608
|
-
"real-require": "^0.2.0",
|
|
609
|
-
"safe-stable-stringify": "^2.3.1",
|
|
610
|
-
"sonic-boom": "^4.0.1",
|
|
611
|
-
"thread-stream": "^3.0.0"
|
|
612
|
-
},
|
|
613
|
-
"bin": {
|
|
614
|
-
"pino": "bin.js"
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
"node_modules/pino-abstract-transport": {
|
|
618
|
-
"version": "2.0.0",
|
|
619
|
-
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz",
|
|
620
|
-
"integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==",
|
|
621
|
-
"license": "MIT",
|
|
622
|
-
"dependencies": {
|
|
623
|
-
"split2": "^4.0.0"
|
|
624
|
-
}
|
|
625
|
-
},
|
|
626
|
-
"node_modules/pino-pretty": {
|
|
627
|
-
"version": "13.1.1",
|
|
628
|
-
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-13.1.1.tgz",
|
|
629
|
-
"integrity": "sha512-TNNEOg0eA0u+/WuqH0MH0Xui7uqVk9D74ESOpjtebSQYbNWJk/dIxCXIxFsNfeN53JmtWqYHP2OrIZjT/CBEnA==",
|
|
630
|
-
"license": "MIT",
|
|
631
|
-
"dependencies": {
|
|
632
|
-
"colorette": "^2.0.7",
|
|
633
|
-
"dateformat": "^4.6.3",
|
|
634
|
-
"fast-copy": "^3.0.2",
|
|
635
|
-
"fast-safe-stringify": "^2.1.1",
|
|
636
|
-
"help-me": "^5.0.0",
|
|
637
|
-
"joycon": "^3.1.1",
|
|
638
|
-
"minimist": "^1.2.6",
|
|
639
|
-
"on-exit-leak-free": "^2.1.0",
|
|
640
|
-
"pino-abstract-transport": "^2.0.0",
|
|
641
|
-
"pump": "^3.0.0",
|
|
642
|
-
"secure-json-parse": "^4.0.0",
|
|
643
|
-
"sonic-boom": "^4.0.1",
|
|
644
|
-
"strip-json-comments": "^5.0.2"
|
|
645
|
-
},
|
|
646
|
-
"bin": {
|
|
647
|
-
"pino-pretty": "bin.js"
|
|
648
|
-
}
|
|
649
|
-
},
|
|
650
|
-
"node_modules/pino-std-serializers": {
|
|
651
|
-
"version": "7.0.0",
|
|
652
|
-
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz",
|
|
653
|
-
"integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==",
|
|
654
|
-
"license": "MIT"
|
|
655
|
-
},
|
|
656
|
-
"node_modules/process-warning": {
|
|
657
|
-
"version": "5.0.0",
|
|
658
|
-
"resolved": "https://registry.npmjs.org/process-warning/-/process-warning-5.0.0.tgz",
|
|
659
|
-
"integrity": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==",
|
|
660
|
-
"funding": [
|
|
661
|
-
{
|
|
662
|
-
"type": "github",
|
|
663
|
-
"url": "https://github.com/sponsors/fastify"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"type": "opencollective",
|
|
667
|
-
"url": "https://opencollective.com/fastify"
|
|
668
|
-
}
|
|
669
|
-
],
|
|
670
|
-
"license": "MIT"
|
|
671
|
-
},
|
|
672
|
-
"node_modules/protobufjs": {
|
|
673
|
-
"version": "6.11.4",
|
|
674
|
-
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz",
|
|
675
|
-
"integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==",
|
|
676
|
-
"hasInstallScript": true,
|
|
677
|
-
"license": "BSD-3-Clause",
|
|
678
|
-
"dependencies": {
|
|
679
|
-
"@protobufjs/aspromise": "^1.1.2",
|
|
680
|
-
"@protobufjs/base64": "^1.1.2",
|
|
681
|
-
"@protobufjs/codegen": "^2.0.4",
|
|
682
|
-
"@protobufjs/eventemitter": "^1.1.0",
|
|
683
|
-
"@protobufjs/fetch": "^1.1.0",
|
|
684
|
-
"@protobufjs/float": "^1.0.2",
|
|
685
|
-
"@protobufjs/inquire": "^1.1.0",
|
|
686
|
-
"@protobufjs/path": "^1.1.2",
|
|
687
|
-
"@protobufjs/pool": "^1.1.0",
|
|
688
|
-
"@protobufjs/utf8": "^1.1.0",
|
|
689
|
-
"@types/long": "^4.0.1",
|
|
690
|
-
"@types/node": ">=13.7.0",
|
|
691
|
-
"long": "^4.0.0"
|
|
692
|
-
},
|
|
693
|
-
"bin": {
|
|
694
|
-
"pbjs": "bin/pbjs",
|
|
695
|
-
"pbts": "bin/pbts"
|
|
696
|
-
}
|
|
697
|
-
},
|
|
698
|
-
"node_modules/protobufjs/node_modules/@types/node": {
|
|
699
|
-
"version": "24.2.0",
|
|
700
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.2.0.tgz",
|
|
701
|
-
"integrity": "sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==",
|
|
702
|
-
"license": "MIT",
|
|
703
|
-
"dependencies": {
|
|
704
|
-
"undici-types": "~7.10.0"
|
|
705
|
-
}
|
|
706
|
-
},
|
|
707
|
-
"node_modules/protobufjs/node_modules/undici-types": {
|
|
708
|
-
"version": "7.10.0",
|
|
709
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz",
|
|
710
|
-
"integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==",
|
|
711
|
-
"license": "MIT"
|
|
712
|
-
},
|
|
713
|
-
"node_modules/pump": {
|
|
714
|
-
"version": "3.0.3",
|
|
715
|
-
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
|
|
716
|
-
"integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
|
|
717
|
-
"license": "MIT",
|
|
718
|
-
"dependencies": {
|
|
719
|
-
"end-of-stream": "^1.1.0",
|
|
720
|
-
"once": "^1.3.1"
|
|
721
|
-
}
|
|
722
|
-
},
|
|
723
|
-
"node_modules/quick-format-unescaped": {
|
|
724
|
-
"version": "4.0.4",
|
|
725
|
-
"resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
|
|
726
|
-
"integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==",
|
|
727
|
-
"license": "MIT"
|
|
728
|
-
},
|
|
729
|
-
"node_modules/real-require": {
|
|
730
|
-
"version": "0.2.0",
|
|
731
|
-
"resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz",
|
|
732
|
-
"integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==",
|
|
733
|
-
"license": "MIT",
|
|
734
|
-
"engines": {
|
|
735
|
-
"node": ">= 12.13.0"
|
|
736
|
-
}
|
|
737
|
-
},
|
|
738
|
-
"node_modules/safe-stable-stringify": {
|
|
739
|
-
"version": "2.5.0",
|
|
740
|
-
"resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
|
|
741
|
-
"integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
|
|
742
|
-
"license": "MIT",
|
|
743
|
-
"engines": {
|
|
744
|
-
"node": ">=10"
|
|
745
|
-
}
|
|
746
|
-
},
|
|
747
|
-
"node_modules/sax": {
|
|
748
|
-
"version": "1.4.1",
|
|
749
|
-
"resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz",
|
|
750
|
-
"integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==",
|
|
751
|
-
"license": "ISC"
|
|
752
|
-
},
|
|
753
|
-
"node_modules/secure-json-parse": {
|
|
754
|
-
"version": "4.0.0",
|
|
755
|
-
"resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-4.0.0.tgz",
|
|
756
|
-
"integrity": "sha512-dxtLJO6sc35jWidmLxo7ij+Eg48PM/kleBsxpC8QJE0qJICe+KawkDQmvCMZUr9u7WKVHgMW6vy3fQ7zMiFZMA==",
|
|
757
|
-
"funding": [
|
|
758
|
-
{
|
|
759
|
-
"type": "github",
|
|
760
|
-
"url": "https://github.com/sponsors/fastify"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"type": "opencollective",
|
|
764
|
-
"url": "https://opencollective.com/fastify"
|
|
765
|
-
}
|
|
766
|
-
],
|
|
767
|
-
"license": "BSD-3-Clause"
|
|
768
|
-
},
|
|
769
|
-
"node_modules/sm3": {
|
|
770
|
-
"version": "1.0.3",
|
|
771
|
-
"resolved": "https://registry.npmjs.org/sm3/-/sm3-1.0.3.tgz",
|
|
772
|
-
"integrity": "sha512-KyFkIfr8QBlFG3uc3NaljaXdYcsbRy1KrSfc4tsQV8jW68jAktGeOcifu530Vx/5LC+PULHT0Rv8LiI8Gw+c1g==",
|
|
773
|
-
"license": "MIT"
|
|
774
|
-
},
|
|
775
|
-
"node_modules/sonic-boom": {
|
|
776
|
-
"version": "4.2.0",
|
|
777
|
-
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.0.tgz",
|
|
778
|
-
"integrity": "sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==",
|
|
779
|
-
"license": "MIT",
|
|
780
|
-
"dependencies": {
|
|
781
|
-
"atomic-sleep": "^1.0.0"
|
|
782
|
-
}
|
|
783
|
-
},
|
|
784
|
-
"node_modules/split2": {
|
|
785
|
-
"version": "4.2.0",
|
|
786
|
-
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
787
|
-
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
788
|
-
"license": "ISC",
|
|
789
|
-
"engines": {
|
|
790
|
-
"node": ">= 10.x"
|
|
791
|
-
}
|
|
792
|
-
},
|
|
793
|
-
"node_modules/strip-json-comments": {
|
|
794
|
-
"version": "5.0.2",
|
|
795
|
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.2.tgz",
|
|
796
|
-
"integrity": "sha512-4X2FR3UwhNUE9G49aIsJW5hRRR3GXGTBTZRMfv568O60ojM8HcWjV/VxAxCDW3SUND33O6ZY66ZuRcdkj73q2g==",
|
|
797
|
-
"license": "MIT",
|
|
798
|
-
"engines": {
|
|
799
|
-
"node": ">=14.16"
|
|
800
|
-
},
|
|
801
|
-
"funding": {
|
|
802
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
803
|
-
}
|
|
804
|
-
},
|
|
805
|
-
"node_modules/tablestore": {
|
|
806
|
-
"version": "5.6.1",
|
|
807
|
-
"resolved": "https://registry.npmjs.org/tablestore/-/tablestore-5.6.1.tgz",
|
|
808
|
-
"integrity": "sha512-3SRuf/9J13bFTIxi9bmp7s28Oh/IUd7gPDIyNzkGdh4/p4GR8iuTTGViVniMr94mkRj6K95osPQdTFy1YqUOdw==",
|
|
809
|
-
"license": "Apache-2.0",
|
|
810
|
-
"dependencies": {
|
|
811
|
-
"buffer": "4.9.1",
|
|
812
|
-
"flatbuffers": "^1.5.0",
|
|
813
|
-
"int64-buffer": "0.1.9",
|
|
814
|
-
"protobufjs": "^6.11.3"
|
|
815
|
-
}
|
|
816
|
-
},
|
|
817
|
-
"node_modules/thread-stream": {
|
|
818
|
-
"version": "3.1.0",
|
|
819
|
-
"resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz",
|
|
820
|
-
"integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==",
|
|
821
|
-
"license": "MIT",
|
|
822
|
-
"dependencies": {
|
|
823
|
-
"real-require": "^0.2.0"
|
|
824
|
-
}
|
|
825
|
-
},
|
|
826
|
-
"node_modules/typescript": {
|
|
827
|
-
"version": "5.9.2",
|
|
828
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
|
|
829
|
-
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
|
|
830
|
-
"dev": true,
|
|
831
|
-
"license": "Apache-2.0",
|
|
832
|
-
"bin": {
|
|
833
|
-
"tsc": "bin/tsc",
|
|
834
|
-
"tsserver": "bin/tsserver"
|
|
835
|
-
},
|
|
836
|
-
"engines": {
|
|
837
|
-
"node": ">=14.17"
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
"node_modules/undici-types": {
|
|
841
|
-
"version": "6.21.0",
|
|
842
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
843
|
-
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
844
|
-
"license": "MIT"
|
|
845
|
-
},
|
|
846
|
-
"node_modules/wrappy": {
|
|
847
|
-
"version": "1.0.2",
|
|
848
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
849
|
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
850
|
-
"license": "ISC"
|
|
851
|
-
},
|
|
852
|
-
"node_modules/xml2js": {
|
|
853
|
-
"version": "0.6.2",
|
|
854
|
-
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz",
|
|
855
|
-
"integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==",
|
|
856
|
-
"license": "MIT",
|
|
857
|
-
"dependencies": {
|
|
858
|
-
"sax": ">=0.6.0",
|
|
859
|
-
"xmlbuilder": "~11.0.0"
|
|
860
|
-
},
|
|
861
|
-
"engines": {
|
|
862
|
-
"node": ">=4.0.0"
|
|
863
|
-
}
|
|
864
|
-
},
|
|
865
|
-
"node_modules/xmlbuilder": {
|
|
866
|
-
"version": "11.0.1",
|
|
867
|
-
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
|
|
868
|
-
"integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
|
|
869
|
-
"license": "MIT",
|
|
870
|
-
"engines": {
|
|
871
|
-
"node": ">=4.0"
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
}
|