@kmlckj/licos-ai-cli 0.0.28 → 0.0.30
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/lib/__templates__/expo/.licosproj/scripts/dev_build.sh +3 -1
- package/lib/__templates__/expo/.licosproj/scripts/dev_run.sh +2 -2
- package/lib/__templates__/expo/.licosproj/scripts/prod_build.sh +2 -2
- package/lib/__templates__/expo/.licosproj/scripts/prod_run.sh +1 -1
- package/lib/__templates__/expo/.licosproj/scripts/server_dev_run.sh +1 -1
- package/lib/__templates__/expo/AGENTS.md +7 -5
- package/lib/__templates__/expo/README.md +5 -5
- package/lib/__templates__/expo/client/package.json +1 -1
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +11 -6
- package/lib/__templates__/expo/package.json +7 -4
- package/lib/__templates__/expo/pnpm-lock.yaml +5 -5
- package/lib/__templates__/expo/server/package.json +6 -6
- package/lib/__templates__/expo/template.config.js +12 -2
- package/lib/__templates__/nextjs/AGENTS.md +5 -3
- package/lib/__templates__/nextjs/README.md +3 -3
- package/lib/__templates__/nextjs/package.json +15 -13
- package/lib/__templates__/nextjs/pnpm-lock.yaml +21 -278
- package/lib/__templates__/nextjs/scripts/build.sh +1 -1
- package/lib/__templates__/nextjs/scripts/prepare.sh +1 -1
- package/lib/__templates__/nextjs/template.config.js +12 -2
- package/lib/__templates__/nuxt-vue/AGENTS.md +5 -3
- package/lib/__templates__/nuxt-vue/README.md +1 -1
- package/lib/__templates__/nuxt-vue/package.json +16 -12
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +11 -406
- package/lib/__templates__/nuxt-vue/scripts/build.sh +1 -1
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +1 -1
- package/lib/__templates__/taro/.licosproj/scripts/deploy_build.sh +1 -1
- package/lib/__templates__/taro/.licosproj/scripts/dev_build.sh +1 -1
- package/lib/__templates__/taro/.licosproj/scripts/dev_run.sh +1 -1
- package/lib/__templates__/taro/AGENTS.md +7 -6
- package/lib/__templates__/taro/README.md +7 -7
- package/lib/__templates__/taro/package.json +3 -5
- package/lib/__templates__/taro/pnpm-lock.yaml +12 -211
- package/lib/__templates__/taro/server/package.json +1 -1
- package/lib/__templates__/taro/server/src/main.ts +2 -2
- package/lib/__templates__/vite/AGENTS.md +5 -3
- package/lib/__templates__/vite/README.md +7 -7
- package/lib/__templates__/vite/package.json +15 -13
- package/lib/__templates__/vite/pnpm-lock.yaml +5 -422
- package/lib/__templates__/vite/scripts/build.sh +1 -1
- package/lib/__templates__/vite/scripts/prepare.sh +1 -1
- package/lib/__templates__/vite/template.config.js +12 -2
- package/lib/cli.js +18 -10
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ PROJECT_DIR="${LICOS_PROJECT_PATH:-${LICOS_WORKSPACE_PATH:-$(pwd)}}"
|
|
|
6
6
|
cd "${PROJECT_DIR}"
|
|
7
7
|
|
|
8
8
|
echo "Installing dependencies..."
|
|
9
|
-
pnpm install --prefer-frozen-lockfile --prefer-offline --loglevel debug --reporter=append-only
|
|
9
|
+
pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --loglevel debug --reporter=append-only
|
|
10
10
|
|
|
11
11
|
echo "Building the Nuxt.js project..."
|
|
12
12
|
pnpm nuxt build
|
|
@@ -6,7 +6,7 @@ PROJECT_DIR="${LICOS_PROJECT_PATH:-${LICOS_WORKSPACE_PATH:-$(pwd)}}"
|
|
|
6
6
|
cd "${PROJECT_DIR}"
|
|
7
7
|
|
|
8
8
|
echo "Installing dependencies..."
|
|
9
|
-
pnpm install --prefer-frozen-lockfile --prefer-offline
|
|
9
|
+
pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
10
10
|
|
|
11
11
|
echo "Preparing Nuxt project..."
|
|
12
12
|
pnpm exec nuxt prepare
|
|
@@ -13,7 +13,7 @@ else
|
|
|
13
13
|
fi
|
|
14
14
|
echo "Installing dependencies..."
|
|
15
15
|
# 安装所有依赖(包含 Taro 核心和 React)
|
|
16
|
-
pnpm install --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
16
|
+
pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
17
17
|
|
|
18
18
|
echo "Building the Taro project..."
|
|
19
19
|
pnpm build
|
|
@@ -6,5 +6,5 @@ PROJECT_DIR="${LICOS_PROJECT_PATH:-${LICOS_WORKSPACE_PATH:-$(pwd)}}"
|
|
|
6
6
|
cd "${PROJECT_DIR}"
|
|
7
7
|
|
|
8
8
|
echo "📦 Ensuring dependencies are installed..."
|
|
9
|
-
pnpm install --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
9
|
+
pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
10
10
|
echo "✅ Dependencies are ready."
|
|
@@ -94,7 +94,7 @@ cleanup_previous_run() {
|
|
|
94
94
|
echo "📦 Installing dependencies..."
|
|
95
95
|
if [[ ! -x "node_modules/.bin/concurrently" ]] || [[ ! -x "node_modules/.bin/tsc" ]] || [[ ! -x "node_modules/.bin/eslint" ]]; then
|
|
96
96
|
echo "📦 Dependencies are incomplete, installing..."
|
|
97
|
-
pnpm install --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
97
|
+
pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only
|
|
98
98
|
echo "✅ Dependencies installed successfully!"
|
|
99
99
|
else
|
|
100
100
|
echo "✅ Dependencies already installed."
|
|
@@ -5,13 +5,14 @@
|
|
|
5
5
|
**必须使用 pnpm**,禁止使用 npm 或 yarn:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm add <package>
|
|
9
|
-
pnpm add -D <package>
|
|
10
|
-
pnpm install
|
|
8
|
+
pnpm add --registry=https://registry.npmmirror.com <package> # 安装生产依赖
|
|
9
|
+
pnpm add --registry=https://registry.npmmirror.com -D <package> # 安装开发依赖
|
|
10
|
+
pnpm install --registry=https://registry.npmmirror.com # 安装所有依赖
|
|
11
11
|
pnpm remove <package> # 移除依赖
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
-
|
|
14
|
+
- 除非用户明确要求,修改代码时不要运行 `pnpm install`、`pnpm dev`、`pnpm build`、`pnpm validate`。平台预览和部署会负责依赖安装与启动。
|
|
15
|
+
- 如果平台预览或部署阶段报依赖缺失,才运行 `pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only`,不要用 `pnpm add` 重装模板已经声明过的依赖。
|
|
15
16
|
|
|
16
17
|
## 图片与视频资源使用规范
|
|
17
18
|
|
|
@@ -239,13 +240,13 @@ import { House } from 'lucide-react-taro'
|
|
|
239
240
|
图标命名与 Lucide 官方一致(PascalCase),完整列表可使用命令查询:
|
|
240
241
|
|
|
241
242
|
```bash
|
|
242
|
-
|
|
243
|
+
pnpm exec taro-lucide-find --list
|
|
243
244
|
```
|
|
244
245
|
|
|
245
246
|
推荐在生成代码前,使用 `--json` 参数批量验证图标是否存在:
|
|
246
247
|
|
|
247
248
|
```bash
|
|
248
|
-
|
|
249
|
+
pnpm exec taro-lucide-find arrow-up user settings arw --json
|
|
249
250
|
```
|
|
250
251
|
|
|
251
252
|
## 网络请求规范 (Network Request Guidelines)
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
### 安装依赖
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
pnpm install
|
|
55
|
+
pnpm install --registry=https://registry.npmmirror.com
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
### 本地开发
|
|
@@ -400,10 +400,10 @@ lucide-react-taro 提供了 CLI 工具来生成 TabBar 所需的 PNG 图标:
|
|
|
400
400
|
|
|
401
401
|
```bash
|
|
402
402
|
# 生成带选中状态的图标
|
|
403
|
-
|
|
403
|
+
pnpm exec taro-lucide-tabbar House Settings User -c "#999999" -a "#1890ff"
|
|
404
404
|
|
|
405
405
|
# 指定输出目录和尺寸
|
|
406
|
-
|
|
406
|
+
pnpm exec taro-lucide-tabbar House Settings User -c "#999999" -a "#1890ff" -o ./src/assets/tabbar -s 81
|
|
407
407
|
```
|
|
408
408
|
|
|
409
409
|
CLI 参数:
|
|
@@ -572,12 +572,12 @@ pnpm build:server // 构建生产版本
|
|
|
572
572
|
cd server
|
|
573
573
|
|
|
574
574
|
# 生成完整的 CRUD 资源 (包含 Module, Controller, Service, DTO, Entity)
|
|
575
|
-
|
|
575
|
+
pnpm exec nest g resource modules/product
|
|
576
576
|
|
|
577
577
|
# 仅生成特定部分
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
578
|
+
pnpm exec nest g module modules/order
|
|
579
|
+
pnpm exec nest g controller modules/order
|
|
580
|
+
pnpm exec nest g service modules/order
|
|
581
581
|
```
|
|
582
582
|
|
|
583
583
|
### 环境变量配置
|
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
"dev:tt": "taro build --type tt --watch",
|
|
16
16
|
"dev:weapp": "taro build --type weapp --watch",
|
|
17
17
|
"dev:web": "taro build --type h5 --watch",
|
|
18
|
-
"ensure:deps": "node -e \"const fs=require('fs'); const bins=['node_modules/.bin/concurrently','node_modules/.bin/tsc','node_modules/.bin/eslint']; process.exit(bins.every((p)=>fs.existsSync(p))?0:1)\" || pnpm install --prefer-frozen-lockfile --prefer-offline --reporter=append-only",
|
|
18
|
+
"ensure:deps": "node -e \"const fs=require('fs'); const bins=['node_modules/.bin/concurrently','node_modules/.bin/tsc','node_modules/.bin/eslint','node_modules/.bin/taro']; process.exit(bins.every((p)=>fs.existsSync(p)||fs.existsSync(p+'.cmd'))?0:1)\" || pnpm install --registry=https://registry.npmmirror.com --prefer-frozen-lockfile --prefer-offline --reporter=append-only",
|
|
19
19
|
"prebuild": "pnpm run ensure:deps",
|
|
20
20
|
"predev": "pnpm run ensure:deps",
|
|
21
|
-
"
|
|
22
|
-
"preinstall": "npx only-allow pnpm",
|
|
21
|
+
"preinstall": "node -e \"const ua=process.env.npm_config_user_agent||''; if(!ua.includes('pnpm')){console.error('Use pnpm to install dependencies.'); process.exit(1)}\"",
|
|
23
22
|
"postinstall": "weapp-tw patch",
|
|
24
23
|
"kill:all": "pkill -9 -f 'concurrently' 2>/dev/null || true; pkill -9 -f 'nest start' 2>/dev/null || true; pkill -9 -f 'taro build' 2>/dev/null || true; pkill -9 -f 'node.*dev' 2>/dev/null || true; echo 'All dev processes cleaned'",
|
|
25
24
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\"",
|
|
@@ -28,7 +27,7 @@
|
|
|
28
27
|
"new": "taro new",
|
|
29
28
|
"preview:tt": "taro build --type tt --preview",
|
|
30
29
|
"preview:weapp": "taro build --type weapp --preview",
|
|
31
|
-
"tsc": "
|
|
30
|
+
"tsc": "pnpm exec tsc --noEmit --skipLibCheck",
|
|
32
31
|
"validate": "pnpm exec concurrently --kill-others-on-fail --kill-signal SIGKILL -n lint,tsc -c red,blue \"pnpm lint:build\" \"pnpm tsc\""
|
|
33
32
|
},
|
|
34
33
|
"lint-staged": {
|
|
@@ -88,7 +87,6 @@
|
|
|
88
87
|
"less": "^4.2.0",
|
|
89
88
|
"lint-staged": "^16.1.2",
|
|
90
89
|
"miniprogram-ci": "^2.1.26",
|
|
91
|
-
"only-allow": "^1.2.2",
|
|
92
90
|
"postcss": "^8.5.6",
|
|
93
91
|
"react-refresh": "^0.14.0",
|
|
94
92
|
"stylelint": "^16.4.0",
|
|
@@ -146,9 +146,6 @@ importers:
|
|
|
146
146
|
miniprogram-ci:
|
|
147
147
|
specifier: ^2.1.26
|
|
148
148
|
version: 2.1.26(eslint@8.57.1)
|
|
149
|
-
only-allow:
|
|
150
|
-
specifier: ^1.2.2
|
|
151
|
-
version: 1.2.2
|
|
152
149
|
postcss:
|
|
153
150
|
specifier: ^8.5.6
|
|
154
151
|
version: 8.5.6
|
|
@@ -189,8 +186,8 @@ importers:
|
|
|
189
186
|
specifier: ^3.958.0
|
|
190
187
|
version: 3.972.0(@aws-sdk/client-s3@3.972.0)
|
|
191
188
|
'@kmlckj/licos-platform-sdk':
|
|
192
|
-
specifier: 0.6.
|
|
193
|
-
version: 0.6.
|
|
189
|
+
specifier: 0.6.2
|
|
190
|
+
version: 0.6.2
|
|
194
191
|
'@nestjs/common':
|
|
195
192
|
specifier: ^10.4.15
|
|
196
193
|
version: 10.4.20(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
@@ -1789,9 +1786,6 @@ packages:
|
|
|
1789
1786
|
'@cacheable/utils@2.3.3':
|
|
1790
1787
|
resolution: {integrity: sha512-JsXDL70gQ+1Vc2W/KUFfkAJzgb4puKwwKehNLuB+HrNKWf91O736kGfxn4KujXCCSuh6mRRL4XEB0PkAFjWS0A==}
|
|
1791
1788
|
|
|
1792
|
-
'@cfworker/json-schema@4.1.1':
|
|
1793
|
-
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
1794
|
-
|
|
1795
1789
|
'@colors/colors@1.5.0':
|
|
1796
1790
|
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
|
|
1797
1791
|
engines: {node: '>=0.1.90'}
|
|
@@ -3092,18 +3086,8 @@ packages:
|
|
|
3092
3086
|
'@keyv/serialize@1.1.1':
|
|
3093
3087
|
resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==}
|
|
3094
3088
|
|
|
3095
|
-
'@kmlckj/licos-platform-sdk@0.6.
|
|
3096
|
-
resolution: {integrity: sha512-
|
|
3097
|
-
|
|
3098
|
-
'@langchain/core@1.1.16':
|
|
3099
|
-
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
3100
|
-
engines: {node: '>=20'}
|
|
3101
|
-
|
|
3102
|
-
'@langchain/openai@1.2.3':
|
|
3103
|
-
resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
|
|
3104
|
-
engines: {node: '>=20'}
|
|
3105
|
-
peerDependencies:
|
|
3106
|
-
'@langchain/core': ^1.0.0
|
|
3089
|
+
'@kmlckj/licos-platform-sdk@0.6.2':
|
|
3090
|
+
resolution: {integrity: sha512-hnHnSjVpih6Z1DL2kGumql0WV7JClmwX9GulqTxfuNX42JHFbvzTq4xHUXtb37bFtFFMWWHzG7ascQFWrheb4w==}
|
|
3107
3091
|
|
|
3108
3092
|
'@leejim/wxml-parser@0.1.6':
|
|
3109
3093
|
resolution: {integrity: sha512-1u4ULGK4GKkWhTlc3Hmac8PknrmpGd7qxZOTnT/Bm6EZ/wtonLgFhJ4vyuiUZpeCptnknOLkRpGx2Um9npwdZw==}
|
|
@@ -4334,9 +4318,6 @@ packages:
|
|
|
4334
4318
|
'@types/node@22.19.6':
|
|
4335
4319
|
resolution: {integrity: sha512-qm+G8HuG6hOHQigsi7VGuLjUVu6TtBo/F05zvX04Mw2uCg9Dv0Qxy3Qw7j41SidlTcl5D/5yg0SEZqOB+EqZnQ==}
|
|
4336
4320
|
|
|
4337
|
-
'@types/phoenix@1.6.7':
|
|
4338
|
-
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
4339
|
-
|
|
4340
4321
|
'@types/postcss-url@10.0.4':
|
|
4341
4322
|
resolution: {integrity: sha512-5QIO9NgbWmAkle65haRqkdgYPCOXheNsaFdbTJJQjT302yK3H49ql4t9a4y0NfpuPtU/UBo15VcV64WCSIMJKg==}
|
|
4342
4323
|
|
|
@@ -4368,12 +4349,6 @@ packages:
|
|
|
4368
4349
|
'@types/serve-static@2.2.0':
|
|
4369
4350
|
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
|
|
4370
4351
|
|
|
4371
|
-
'@types/uuid@10.0.0':
|
|
4372
|
-
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
4373
|
-
|
|
4374
|
-
'@types/ws@8.18.1':
|
|
4375
|
-
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
4376
|
-
|
|
4377
4352
|
'@typescript-eslint/eslint-plugin@6.21.0':
|
|
4378
4353
|
resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
|
|
4379
4354
|
engines: {node: ^16.0.0 || >=18.0.0}
|
|
@@ -4540,6 +4515,7 @@ packages:
|
|
|
4540
4515
|
'@xmldom/xmldom@0.8.11':
|
|
4541
4516
|
resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==}
|
|
4542
4517
|
engines: {node: '>=10.0.0'}
|
|
4518
|
+
deprecated: this version has critical issues, please update to the latest version
|
|
4543
4519
|
|
|
4544
4520
|
'@xtuc/ieee754@1.2.0':
|
|
4545
4521
|
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
|
|
@@ -4667,10 +4643,6 @@ packages:
|
|
|
4667
4643
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
4668
4644
|
engines: {node: '>=8'}
|
|
4669
4645
|
|
|
4670
|
-
ansi-styles@5.2.0:
|
|
4671
|
-
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
|
4672
|
-
engines: {node: '>=10'}
|
|
4673
|
-
|
|
4674
4646
|
ansi-styles@6.2.3:
|
|
4675
4647
|
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
|
|
4676
4648
|
engines: {node: '>=12'}
|
|
@@ -5307,10 +5279,6 @@ packages:
|
|
|
5307
5279
|
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
|
5308
5280
|
engines: {node: '>=6'}
|
|
5309
5281
|
|
|
5310
|
-
camelcase@6.3.0:
|
|
5311
|
-
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
5312
|
-
engines: {node: '>=10'}
|
|
5313
|
-
|
|
5314
5282
|
caniuse-api@3.0.0:
|
|
5315
5283
|
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
|
|
5316
5284
|
|
|
@@ -5576,9 +5544,6 @@ packages:
|
|
|
5576
5544
|
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
|
|
5577
5545
|
engines: {node: ^14.18.0 || >=16.10.0}
|
|
5578
5546
|
|
|
5579
|
-
console-table-printer@2.15.0:
|
|
5580
|
-
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
5581
|
-
|
|
5582
5547
|
constant-case@3.0.4:
|
|
5583
5548
|
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
|
|
5584
5549
|
|
|
@@ -6822,19 +6787,21 @@ packages:
|
|
|
6822
6787
|
glob@10.2.6:
|
|
6823
6788
|
resolution: {integrity: sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==}
|
|
6824
6789
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
6790
|
+
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
6825
6791
|
hasBin: true
|
|
6826
6792
|
|
|
6827
6793
|
glob@10.4.5:
|
|
6828
6794
|
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
|
|
6795
|
+
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
6829
6796
|
hasBin: true
|
|
6830
6797
|
|
|
6831
6798
|
glob@7.1.2:
|
|
6832
6799
|
resolution: {integrity: sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==}
|
|
6833
|
-
deprecated:
|
|
6800
|
+
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
6834
6801
|
|
|
6835
6802
|
glob@7.2.3:
|
|
6836
6803
|
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
6837
|
-
deprecated:
|
|
6804
|
+
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
6838
6805
|
|
|
6839
6806
|
global-modules@2.0.0:
|
|
6840
6807
|
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
|
|
@@ -7050,10 +7017,6 @@ packages:
|
|
|
7050
7017
|
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
|
|
7051
7018
|
engines: {node: '>=10.17.0'}
|
|
7052
7019
|
|
|
7053
|
-
iceberg-js@0.8.1:
|
|
7054
|
-
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
7055
|
-
engines: {node: '>=20.0.0'}
|
|
7056
|
-
|
|
7057
7020
|
iconv-lite@0.4.24:
|
|
7058
7021
|
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
7059
7022
|
engines: {node: '>=0.10.0'}
|
|
@@ -7435,9 +7398,6 @@ packages:
|
|
|
7435
7398
|
js-base64@3.7.8:
|
|
7436
7399
|
resolution: {integrity: sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==}
|
|
7437
7400
|
|
|
7438
|
-
js-tiktoken@1.0.21:
|
|
7439
|
-
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
7440
|
-
|
|
7441
7401
|
js-tokens@3.0.2:
|
|
7442
7402
|
resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
|
|
7443
7403
|
|
|
@@ -7560,23 +7520,6 @@ packages:
|
|
|
7560
7520
|
known-css-properties@0.37.0:
|
|
7561
7521
|
resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==}
|
|
7562
7522
|
|
|
7563
|
-
langsmith@0.4.7:
|
|
7564
|
-
resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
|
|
7565
|
-
peerDependencies:
|
|
7566
|
-
'@opentelemetry/api': '*'
|
|
7567
|
-
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
7568
|
-
'@opentelemetry/sdk-trace-base': '*'
|
|
7569
|
-
openai: '*'
|
|
7570
|
-
peerDependenciesMeta:
|
|
7571
|
-
'@opentelemetry/api':
|
|
7572
|
-
optional: true
|
|
7573
|
-
'@opentelemetry/exporter-trace-otlp-proto':
|
|
7574
|
-
optional: true
|
|
7575
|
-
'@opentelemetry/sdk-trace-base':
|
|
7576
|
-
optional: true
|
|
7577
|
-
openai:
|
|
7578
|
-
optional: true
|
|
7579
|
-
|
|
7580
7523
|
latest-version@5.1.0:
|
|
7581
7524
|
resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
|
|
7582
7525
|
engines: {node: '>=8'}
|
|
@@ -8153,10 +8096,6 @@ packages:
|
|
|
8153
8096
|
multipipe@0.1.2:
|
|
8154
8097
|
resolution: {integrity: sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==}
|
|
8155
8098
|
|
|
8156
|
-
mustache@4.2.0:
|
|
8157
|
-
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
|
|
8158
|
-
hasBin: true
|
|
8159
|
-
|
|
8160
8099
|
mute-stream@0.0.8:
|
|
8161
8100
|
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
|
|
8162
8101
|
|
|
@@ -8358,22 +8297,6 @@ packages:
|
|
|
8358
8297
|
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
8359
8298
|
engines: {node: '>=18'}
|
|
8360
8299
|
|
|
8361
|
-
only-allow@1.2.2:
|
|
8362
|
-
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
8363
|
-
hasBin: true
|
|
8364
|
-
|
|
8365
|
-
openai@6.16.0:
|
|
8366
|
-
resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
|
|
8367
|
-
hasBin: true
|
|
8368
|
-
peerDependencies:
|
|
8369
|
-
ws: ^8.18.0
|
|
8370
|
-
zod: ^3.25 || ^4.0
|
|
8371
|
-
peerDependenciesMeta:
|
|
8372
|
-
ws:
|
|
8373
|
-
optional: true
|
|
8374
|
-
zod:
|
|
8375
|
-
optional: true
|
|
8376
|
-
|
|
8377
8300
|
optionator@0.9.4:
|
|
8378
8301
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
8379
8302
|
engines: {node: '>= 0.8.0'}
|
|
@@ -8438,18 +8361,10 @@ packages:
|
|
|
8438
8361
|
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
8439
8362
|
engines: {node: '>=10'}
|
|
8440
8363
|
|
|
8441
|
-
p-queue@6.6.2:
|
|
8442
|
-
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
|
|
8443
|
-
engines: {node: '>=8'}
|
|
8444
|
-
|
|
8445
8364
|
p-timeout@2.0.1:
|
|
8446
8365
|
resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==}
|
|
8447
8366
|
engines: {node: '>=4'}
|
|
8448
8367
|
|
|
8449
|
-
p-timeout@3.2.0:
|
|
8450
|
-
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
|
|
8451
|
-
engines: {node: '>=8'}
|
|
8452
|
-
|
|
8453
8368
|
p-try@2.2.0:
|
|
8454
8369
|
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
|
|
8455
8370
|
engines: {node: '>=6'}
|
|
@@ -9158,6 +9073,7 @@ packages:
|
|
|
9158
9073
|
prebuild-install@7.1.3:
|
|
9159
9074
|
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
9160
9075
|
engines: {node: '>=10'}
|
|
9076
|
+
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
9161
9077
|
hasBin: true
|
|
9162
9078
|
|
|
9163
9079
|
prelude-ls@1.2.1:
|
|
@@ -9753,9 +9669,6 @@ packages:
|
|
|
9753
9669
|
simple-swizzle@0.2.4:
|
|
9754
9670
|
resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
|
|
9755
9671
|
|
|
9756
|
-
simple-wcswidth@1.1.2:
|
|
9757
|
-
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
9758
|
-
|
|
9759
9672
|
slash@1.0.0:
|
|
9760
9673
|
resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
|
|
9761
9674
|
engines: {node: '>=0.10.0'}
|
|
@@ -10447,10 +10360,6 @@ packages:
|
|
|
10447
10360
|
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
|
|
10448
10361
|
engines: {node: '>= 0.4.0'}
|
|
10449
10362
|
|
|
10450
|
-
uuid@10.0.0:
|
|
10451
|
-
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
10452
|
-
hasBin: true
|
|
10453
|
-
|
|
10454
10363
|
uuid@3.4.0:
|
|
10455
10364
|
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
|
|
10456
10365
|
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
|
|
@@ -10574,10 +10483,6 @@ packages:
|
|
|
10574
10483
|
which-module@2.0.1:
|
|
10575
10484
|
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
|
|
10576
10485
|
|
|
10577
|
-
which-pm-runs@1.1.0:
|
|
10578
|
-
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
|
|
10579
|
-
engines: {node: '>=4'}
|
|
10580
|
-
|
|
10581
10486
|
which-typed-array@1.1.19:
|
|
10582
10487
|
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
|
|
10583
10488
|
engines: {node: '>= 0.4'}
|
|
@@ -10621,18 +10526,6 @@ packages:
|
|
|
10621
10526
|
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
|
|
10622
10527
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
10623
10528
|
|
|
10624
|
-
ws@8.19.0:
|
|
10625
|
-
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
10626
|
-
engines: {node: '>=10.0.0'}
|
|
10627
|
-
peerDependencies:
|
|
10628
|
-
bufferutil: ^4.0.1
|
|
10629
|
-
utf-8-validate: '>=5.0.2'
|
|
10630
|
-
peerDependenciesMeta:
|
|
10631
|
-
bufferutil:
|
|
10632
|
-
optional: true
|
|
10633
|
-
utf-8-validate:
|
|
10634
|
-
optional: true
|
|
10635
|
-
|
|
10636
10529
|
wxml-minifier@0.0.1:
|
|
10637
10530
|
resolution: {integrity: sha512-g8ZS4fyLdyRIcExnevKTnAFxbtYlAPKBGFO1DXOcsJfmppQWjH2xe2Ff6rRQ2ubYAWalaNjMYpkAl6hurhqkHg==}
|
|
10638
10531
|
|
|
@@ -12977,8 +12870,6 @@ snapshots:
|
|
|
12977
12870
|
hashery: 1.4.0
|
|
12978
12871
|
keyv: 5.5.5
|
|
12979
12872
|
|
|
12980
|
-
'@cfworker/json-schema@4.1.1': {}
|
|
12981
|
-
|
|
12982
12873
|
'@colors/colors@1.5.0':
|
|
12983
12874
|
optional: true
|
|
12984
12875
|
|
|
@@ -14198,34 +14089,7 @@ snapshots:
|
|
|
14198
14089
|
|
|
14199
14090
|
'@keyv/serialize@1.1.1': {}
|
|
14200
14091
|
|
|
14201
|
-
'@kmlckj/licos-platform-sdk@0.6.
|
|
14202
|
-
|
|
14203
|
-
'@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
|
|
14204
|
-
dependencies:
|
|
14205
|
-
'@cfworker/json-schema': 4.1.1
|
|
14206
|
-
ansi-styles: 5.2.0
|
|
14207
|
-
camelcase: 6.3.0
|
|
14208
|
-
decamelize: 1.2.0
|
|
14209
|
-
js-tiktoken: 1.0.21
|
|
14210
|
-
langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
14211
|
-
mustache: 4.2.0
|
|
14212
|
-
p-queue: 6.6.2
|
|
14213
|
-
uuid: 10.0.0
|
|
14214
|
-
zod: 4.3.5
|
|
14215
|
-
transitivePeerDependencies:
|
|
14216
|
-
- '@opentelemetry/api'
|
|
14217
|
-
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
14218
|
-
- '@opentelemetry/sdk-trace-base'
|
|
14219
|
-
- openai
|
|
14220
|
-
|
|
14221
|
-
'@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
|
|
14222
|
-
dependencies:
|
|
14223
|
-
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
14224
|
-
js-tiktoken: 1.0.21
|
|
14225
|
-
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
14226
|
-
zod: 4.3.5
|
|
14227
|
-
transitivePeerDependencies:
|
|
14228
|
-
- ws
|
|
14092
|
+
'@kmlckj/licos-platform-sdk@0.6.2': {}
|
|
14229
14093
|
|
|
14230
14094
|
'@leejim/wxml-parser@0.1.6': {}
|
|
14231
14095
|
|
|
@@ -15055,8 +14919,7 @@ snapshots:
|
|
|
15055
14919
|
'@tarojs/binding-linux-x64-gnu@4.1.9':
|
|
15056
14920
|
optional: true
|
|
15057
14921
|
|
|
15058
|
-
'@tarojs/binding-linux-x64-musl@4.1.9':
|
|
15059
|
-
optional: true
|
|
14922
|
+
'@tarojs/binding-linux-x64-musl@4.1.9': {}
|
|
15060
14923
|
|
|
15061
14924
|
'@tarojs/binding-win32-x64-msvc@4.1.9':
|
|
15062
14925
|
optional: true
|
|
@@ -15068,7 +14931,6 @@ snapshots:
|
|
|
15068
14931
|
'@tarojs/binding-darwin-arm64': 4.1.9
|
|
15069
14932
|
'@tarojs/binding-darwin-x64': 4.1.9
|
|
15070
14933
|
'@tarojs/binding-linux-x64-gnu': 4.1.9
|
|
15071
|
-
'@tarojs/binding-linux-x64-musl': 4.1.9
|
|
15072
14934
|
'@tarojs/binding-win32-x64-msvc': 4.1.9
|
|
15073
14935
|
|
|
15074
14936
|
'@tarojs/cli@4.1.9(@types/node@22.19.6)':
|
|
@@ -15611,8 +15473,6 @@ snapshots:
|
|
|
15611
15473
|
dependencies:
|
|
15612
15474
|
undici-types: 6.21.0
|
|
15613
15475
|
|
|
15614
|
-
'@types/phoenix@1.6.7': {}
|
|
15615
|
-
|
|
15616
15476
|
'@types/postcss-url@10.0.4':
|
|
15617
15477
|
dependencies:
|
|
15618
15478
|
'@types/node': 22.19.6
|
|
@@ -15648,12 +15508,6 @@ snapshots:
|
|
|
15648
15508
|
'@types/http-errors': 2.0.5
|
|
15649
15509
|
'@types/node': 22.19.6
|
|
15650
15510
|
|
|
15651
|
-
'@types/uuid@10.0.0': {}
|
|
15652
|
-
|
|
15653
|
-
'@types/ws@8.18.1':
|
|
15654
|
-
dependencies:
|
|
15655
|
-
'@types/node': 22.19.6
|
|
15656
|
-
|
|
15657
15511
|
'@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
|
|
15658
15512
|
dependencies:
|
|
15659
15513
|
'@eslint-community/regexpp': 4.12.2
|
|
@@ -16031,8 +15885,6 @@ snapshots:
|
|
|
16031
15885
|
dependencies:
|
|
16032
15886
|
color-convert: 2.0.1
|
|
16033
15887
|
|
|
16034
|
-
ansi-styles@5.2.0: {}
|
|
16035
|
-
|
|
16036
15888
|
ansi-styles@6.2.3: {}
|
|
16037
15889
|
|
|
16038
15890
|
ansi-wrap@0.1.0: {}
|
|
@@ -17087,8 +16939,6 @@ snapshots:
|
|
|
17087
16939
|
|
|
17088
16940
|
camelcase@5.3.1: {}
|
|
17089
16941
|
|
|
17090
|
-
camelcase@6.3.0: {}
|
|
17091
|
-
|
|
17092
16942
|
caniuse-api@3.0.0:
|
|
17093
16943
|
dependencies:
|
|
17094
16944
|
browserslist: 4.28.1
|
|
@@ -17400,10 +17250,6 @@ snapshots:
|
|
|
17400
17250
|
|
|
17401
17251
|
consola@3.4.2: {}
|
|
17402
17252
|
|
|
17403
|
-
console-table-printer@2.15.0:
|
|
17404
|
-
dependencies:
|
|
17405
|
-
simple-wcswidth: 1.1.2
|
|
17406
|
-
|
|
17407
17253
|
constant-case@3.0.4:
|
|
17408
17254
|
dependencies:
|
|
17409
17255
|
no-case: 3.0.4
|
|
@@ -19201,8 +19047,6 @@ snapshots:
|
|
|
19201
19047
|
|
|
19202
19048
|
human-signals@2.1.0: {}
|
|
19203
19049
|
|
|
19204
|
-
iceberg-js@0.8.1: {}
|
|
19205
|
-
|
|
19206
19050
|
iconv-lite@0.4.24:
|
|
19207
19051
|
dependencies:
|
|
19208
19052
|
safer-buffer: 2.1.2
|
|
@@ -19607,10 +19451,6 @@ snapshots:
|
|
|
19607
19451
|
|
|
19608
19452
|
js-base64@3.7.8: {}
|
|
19609
19453
|
|
|
19610
|
-
js-tiktoken@1.0.21:
|
|
19611
|
-
dependencies:
|
|
19612
|
-
base64-js: 1.5.1
|
|
19613
|
-
|
|
19614
19454
|
js-tokens@3.0.2: {}
|
|
19615
19455
|
|
|
19616
19456
|
js-tokens@4.0.0: {}
|
|
@@ -19718,17 +19558,6 @@ snapshots:
|
|
|
19718
19558
|
|
|
19719
19559
|
known-css-properties@0.37.0: {}
|
|
19720
19560
|
|
|
19721
|
-
langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
|
|
19722
|
-
dependencies:
|
|
19723
|
-
'@types/uuid': 10.0.0
|
|
19724
|
-
chalk: 4.1.2
|
|
19725
|
-
console-table-printer: 2.15.0
|
|
19726
|
-
p-queue: 6.6.2
|
|
19727
|
-
semver: 7.7.4
|
|
19728
|
-
uuid: 10.0.0
|
|
19729
|
-
optionalDependencies:
|
|
19730
|
-
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
19731
|
-
|
|
19732
19561
|
latest-version@5.1.0:
|
|
19733
19562
|
dependencies:
|
|
19734
19563
|
package-json: 6.5.0
|
|
@@ -20418,8 +20247,6 @@ snapshots:
|
|
|
20418
20247
|
dependencies:
|
|
20419
20248
|
duplexer2: 0.0.2
|
|
20420
20249
|
|
|
20421
|
-
mustache@4.2.0: {}
|
|
20422
|
-
|
|
20423
20250
|
mute-stream@0.0.8: {}
|
|
20424
20251
|
|
|
20425
20252
|
mute-stream@1.0.0: {}
|
|
@@ -20620,15 +20447,6 @@ snapshots:
|
|
|
20620
20447
|
dependencies:
|
|
20621
20448
|
mimic-function: 5.0.1
|
|
20622
20449
|
|
|
20623
|
-
only-allow@1.2.2:
|
|
20624
|
-
dependencies:
|
|
20625
|
-
which-pm-runs: 1.1.0
|
|
20626
|
-
|
|
20627
|
-
openai@6.16.0(ws@8.19.0)(zod@4.3.5):
|
|
20628
|
-
optionalDependencies:
|
|
20629
|
-
ws: 8.19.0
|
|
20630
|
-
zod: 4.3.5
|
|
20631
|
-
|
|
20632
20450
|
optionator@0.9.4:
|
|
20633
20451
|
dependencies:
|
|
20634
20452
|
deep-is: 0.1.4
|
|
@@ -20704,19 +20522,10 @@ snapshots:
|
|
|
20704
20522
|
dependencies:
|
|
20705
20523
|
p-limit: 3.1.0
|
|
20706
20524
|
|
|
20707
|
-
p-queue@6.6.2:
|
|
20708
|
-
dependencies:
|
|
20709
|
-
eventemitter3: 4.0.7
|
|
20710
|
-
p-timeout: 3.2.0
|
|
20711
|
-
|
|
20712
20525
|
p-timeout@2.0.1:
|
|
20713
20526
|
dependencies:
|
|
20714
20527
|
p-finally: 1.0.0
|
|
20715
20528
|
|
|
20716
|
-
p-timeout@3.2.0:
|
|
20717
|
-
dependencies:
|
|
20718
|
-
p-finally: 1.0.0
|
|
20719
|
-
|
|
20720
20529
|
p-try@2.2.0: {}
|
|
20721
20530
|
|
|
20722
20531
|
package-json-from-dist@1.0.1: {}
|
|
@@ -22181,8 +21990,6 @@ snapshots:
|
|
|
22181
21990
|
dependencies:
|
|
22182
21991
|
is-arrayish: 0.3.4
|
|
22183
21992
|
|
|
22184
|
-
simple-wcswidth@1.1.2: {}
|
|
22185
|
-
|
|
22186
21993
|
slash@1.0.0: {}
|
|
22187
21994
|
|
|
22188
21995
|
slash@3.0.0: {}
|
|
@@ -22978,8 +22785,6 @@ snapshots:
|
|
|
22978
22785
|
|
|
22979
22786
|
utils-merge@1.0.1: {}
|
|
22980
22787
|
|
|
22981
|
-
uuid@10.0.0: {}
|
|
22982
|
-
|
|
22983
22788
|
uuid@3.4.0: {}
|
|
22984
22789
|
|
|
22985
22790
|
validate-html-nesting@1.2.4: {}
|
|
@@ -23181,8 +22986,6 @@ snapshots:
|
|
|
23181
22986
|
|
|
23182
22987
|
which-module@2.0.1: {}
|
|
23183
22988
|
|
|
23184
|
-
which-pm-runs@1.1.0: {}
|
|
23185
|
-
|
|
23186
22989
|
which-typed-array@1.1.19:
|
|
23187
22990
|
dependencies:
|
|
23188
22991
|
available-typed-arrays: 1.0.7
|
|
@@ -23236,8 +23039,6 @@ snapshots:
|
|
|
23236
23039
|
imurmurhash: 0.1.4
|
|
23237
23040
|
signal-exit: 4.1.0
|
|
23238
23041
|
|
|
23239
|
-
ws@8.19.0: {}
|
|
23240
|
-
|
|
23241
23042
|
wxml-minifier@0.0.1:
|
|
23242
23043
|
dependencies:
|
|
23243
23044
|
'@leejim/wxml-parser': 0.1.6
|