@coze-arch/cli 0.0.1-alpha.d85d9d → 0.0.1-alpha.de5a13
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/.cozeproj/scripts/dev_run.sh +13 -12
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
- package/lib/__templates__/expo/client/package.json +35 -35
- package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
- package/lib/__templates__/expo/package.json +1 -1
- package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +3 -2
- package/lib/__templates__/expo/pnpm-lock.yaml +336 -1735
- package/lib/__templates__/expo/server/package.json +9 -7
- package/lib/__templates__/expo/server/src/index.ts +1 -0
- package/lib/__templates__/expo/template.config.js +56 -0
- package/lib/__templates__/nextjs/.babelrc +0 -3
- package/lib/__templates__/nextjs/package.json +3 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +116 -106
- package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
- package/lib/__templates__/nextjs/template.config.js +49 -14
- package/lib/__templates__/taro/.coze +1 -1
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +5 -6
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +6 -8
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +28 -5
- package/lib/__templates__/taro/_gitignore +40 -0
- package/lib/__templates__/taro/_npmrc +18 -0
- package/lib/__templates__/taro/config/index.ts +3 -2
- package/lib/__templates__/taro/eslint.config.mjs +57 -0
- package/lib/__templates__/taro/package.json +30 -32
- package/lib/__templates__/taro/pnpm-lock.yaml +466 -679
- package/lib/__templates__/taro/server/package.json +8 -7
- package/lib/__templates__/taro/server/src/main.ts +14 -2
- package/lib/__templates__/taro/src/app.css +29 -18
- package/lib/__templates__/taro/src/app.ts +11 -25
- package/lib/__templates__/taro/src/index.html +20 -1
- package/lib/__templates__/taro/src/pages/index/index.tsx +14 -11
- package/lib/__templates__/taro/src/utils/wx-debug.ts +23 -0
- package/lib/__templates__/vite/package.json +3 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +142 -1659
- package/lib/__templates__/vite/src/main.ts +17 -47
- package/lib/__templates__/vite/template.config.js +49 -14
- package/lib/cli.js +42 -62
- package/package.json +1 -1
- package/lib/__templates__/taro/.eslintrc +0 -40
- package/lib/__templates__/taro/commitlint.config.mjs +0 -1
|
@@ -3,18 +3,20 @@
|
|
|
3
3
|
"private": true,
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"preinstall": "npx only-allow pnpm",
|
|
7
|
-
"dev": "bash ../.cozeproj/scripts/server_dev_run.sh",
|
|
8
6
|
"build": "node build.js",
|
|
7
|
+
"dev": "bash ../.cozeproj/scripts/server_dev_run.sh",
|
|
8
|
+
"preinstall": "npx only-allow pnpm",
|
|
9
9
|
"start": "NODE_ENV=production PORT=${PORT:-5000} node dist/index.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"
|
|
12
|
+
"@supabase/supabase-js": "2.95.3",
|
|
13
13
|
"cors": "^2.8.5",
|
|
14
|
-
"coze-coding-dev-sdk": "^0.7.
|
|
14
|
+
"coze-coding-dev-sdk": "^0.7.15",
|
|
15
15
|
"dayjs": "^1.11.19",
|
|
16
|
+
"dotenv": "^17.2.3",
|
|
16
17
|
"drizzle-orm": "^0.45.1",
|
|
17
18
|
"drizzle-zod": "^0.8.3",
|
|
19
|
+
"express": "^4.22.1",
|
|
18
20
|
"multer": "^2.0.2",
|
|
19
21
|
"pg": "^8.16.3",
|
|
20
22
|
"zod": "^4.2.1"
|
|
@@ -22,11 +24,11 @@
|
|
|
22
24
|
"devDependencies": {
|
|
23
25
|
"@types/cors": "^2.8.19",
|
|
24
26
|
"@types/express": "^5.0.6",
|
|
25
|
-
"tsx": "^4.21.0",
|
|
26
27
|
"@types/multer": "^2.0.0",
|
|
27
28
|
"@types/pg": "^8.16.0",
|
|
29
|
+
"drizzle-kit": "^0.31.8",
|
|
28
30
|
"esbuild": "0.27.2",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
+
"tsx": "^4.21.0",
|
|
32
|
+
"typescript": "^5.8.3"
|
|
31
33
|
}
|
|
32
34
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
import { spawn } from 'child_process';
|
|
4
|
+
import { resolve, join, basename } from 'path';
|
|
5
|
+
import { appendFileSync, openSync, closeSync, mkdirSync } from 'fs';
|
|
3
6
|
|
|
4
7
|
|
|
5
8
|
|
|
@@ -45,6 +48,59 @@ const config = {
|
|
|
45
48
|
console.log(` - Framework: Expo`);
|
|
46
49
|
console.log(` - Port: ${context.port}`);
|
|
47
50
|
},
|
|
51
|
+
onComplete: async (_context, outputPath) => {
|
|
52
|
+
// Skip pnpm update in test environment to avoid monorepo workspace issues
|
|
53
|
+
if (process.env.NODE_ENV === 'test') {
|
|
54
|
+
console.log('⊘ Skipping dependency update in test environment');
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const cmd = 'pnpm';
|
|
59
|
+
const args = ['-r', 'up', 'coze-coding-dev-sdk@^0.7.0'];
|
|
60
|
+
console.log(
|
|
61
|
+
`\nTriggering: ${cmd} ${args.join(' ')} (running in background)`,
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
try {
|
|
65
|
+
const projectRoot = resolve(outputPath);
|
|
66
|
+
|
|
67
|
+
// Determine log directory
|
|
68
|
+
const logDir = process.env.COZE_LOG_DIR || resolve(__dirname, '../.log');
|
|
69
|
+
mkdirSync(logDir, { recursive: true });
|
|
70
|
+
|
|
71
|
+
// Use project name in log file to avoid conflicts
|
|
72
|
+
const projectName = basename(projectRoot);
|
|
73
|
+
const logFile = join(logDir, `${projectName}-init.log`);
|
|
74
|
+
|
|
75
|
+
// Write log header
|
|
76
|
+
const timestamp = new Date().toISOString();
|
|
77
|
+
appendFileSync(
|
|
78
|
+
logFile,
|
|
79
|
+
`\n=== [${timestamp}] ${cmd} ${args.join(' ')} ===\n`,
|
|
80
|
+
);
|
|
81
|
+
|
|
82
|
+
// Open log file for appending
|
|
83
|
+
const logFd = openSync(logFile, 'a');
|
|
84
|
+
|
|
85
|
+
// Spawn in detached mode
|
|
86
|
+
const child = spawn(cmd, args, {
|
|
87
|
+
cwd: projectRoot,
|
|
88
|
+
detached: true,
|
|
89
|
+
stdio: ['ignore', logFd, logFd],
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
child.unref();
|
|
93
|
+
closeSync(logFd);
|
|
94
|
+
|
|
95
|
+
console.log(
|
|
96
|
+
'✓ coze-coding-dev-sdk update triggered (running in background)',
|
|
97
|
+
);
|
|
98
|
+
console.log(` Log file: ${logFile}`);
|
|
99
|
+
} catch (error) {
|
|
100
|
+
console.error('✗ Failed to trigger coze-coding-dev-sdk update:', error);
|
|
101
|
+
console.log(' You can manually run: pnpm update coze-coding-dev-sdk');
|
|
102
|
+
}
|
|
103
|
+
},
|
|
48
104
|
};
|
|
49
105
|
|
|
50
106
|
export default config;
|
|
@@ -40,11 +40,13 @@
|
|
|
40
40
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
41
41
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
42
42
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
43
|
+
"@supabase/supabase-js": "2.95.3",
|
|
43
44
|
"class-variance-authority": "^0.7.1",
|
|
44
45
|
"clsx": "^2.1.1",
|
|
45
46
|
"cmdk": "^1.1.1",
|
|
46
|
-
"coze-coding-dev-sdk": "^0.7.
|
|
47
|
+
"coze-coding-dev-sdk": "^0.7.15",
|
|
47
48
|
"date-fns": "^4.1.0",
|
|
49
|
+
"dotenv": "^17.2.3",
|
|
48
50
|
"drizzle-kit": "^0.31.8",
|
|
49
51
|
"drizzle-orm": "^0.45.1",
|
|
50
52
|
"drizzle-zod": "^0.8.3",
|
|
@@ -98,6 +98,9 @@ importers:
|
|
|
98
98
|
'@radix-ui/react-tooltip':
|
|
99
99
|
specifier: ^1.2.8
|
|
100
100
|
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
101
|
+
'@supabase/supabase-js':
|
|
102
|
+
specifier: 2.95.3
|
|
103
|
+
version: 2.95.3
|
|
101
104
|
class-variance-authority:
|
|
102
105
|
specifier: ^0.7.1
|
|
103
106
|
version: 0.7.1
|
|
@@ -108,11 +111,14 @@ importers:
|
|
|
108
111
|
specifier: ^1.1.1
|
|
109
112
|
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
110
113
|
coze-coding-dev-sdk:
|
|
111
|
-
specifier: ^0.7.
|
|
112
|
-
version: 0.7.
|
|
114
|
+
specifier: ^0.7.15
|
|
115
|
+
version: 0.7.15(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
|
|
113
116
|
date-fns:
|
|
114
117
|
specifier: ^4.1.0
|
|
115
118
|
version: 4.1.0
|
|
119
|
+
dotenv:
|
|
120
|
+
specifier: ^17.2.3
|
|
121
|
+
version: 17.2.3
|
|
116
122
|
drizzle-kit:
|
|
117
123
|
specifier: ^0.31.8
|
|
118
124
|
version: 0.31.8
|
|
@@ -2054,6 +2060,30 @@ packages:
|
|
|
2054
2060
|
'@standard-schema/utils@0.3.0':
|
|
2055
2061
|
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
2056
2062
|
|
|
2063
|
+
'@supabase/auth-js@2.95.3':
|
|
2064
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
2065
|
+
engines: {node: '>=20.0.0'}
|
|
2066
|
+
|
|
2067
|
+
'@supabase/functions-js@2.95.3':
|
|
2068
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
2069
|
+
engines: {node: '>=20.0.0'}
|
|
2070
|
+
|
|
2071
|
+
'@supabase/postgrest-js@2.95.3':
|
|
2072
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
2073
|
+
engines: {node: '>=20.0.0'}
|
|
2074
|
+
|
|
2075
|
+
'@supabase/realtime-js@2.95.3':
|
|
2076
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
2077
|
+
engines: {node: '>=20.0.0'}
|
|
2078
|
+
|
|
2079
|
+
'@supabase/storage-js@2.95.3':
|
|
2080
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
2081
|
+
engines: {node: '>=20.0.0'}
|
|
2082
|
+
|
|
2083
|
+
'@supabase/supabase-js@2.95.3':
|
|
2084
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
2085
|
+
engines: {node: '>=20.0.0'}
|
|
2086
|
+
|
|
2057
2087
|
'@swc/helpers@0.5.15':
|
|
2058
2088
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
2059
2089
|
|
|
@@ -2206,6 +2236,9 @@ packages:
|
|
|
2206
2236
|
'@types/pg@8.16.0':
|
|
2207
2237
|
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2208
2238
|
|
|
2239
|
+
'@types/phoenix@1.6.7':
|
|
2240
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
2241
|
+
|
|
2209
2242
|
'@types/react-dom@19.2.3':
|
|
2210
2243
|
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
2211
2244
|
peerDependencies:
|
|
@@ -2228,6 +2261,9 @@ packages:
|
|
|
2228
2261
|
'@types/validate-npm-package-name@4.0.2':
|
|
2229
2262
|
resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==}
|
|
2230
2263
|
|
|
2264
|
+
'@types/ws@8.18.1':
|
|
2265
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
2266
|
+
|
|
2231
2267
|
'@typescript-eslint/eslint-plugin@8.54.0':
|
|
2232
2268
|
resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
|
|
2233
2269
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -2705,10 +2741,6 @@ packages:
|
|
|
2705
2741
|
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
2706
2742
|
engines: {node: '>=6'}
|
|
2707
2743
|
|
|
2708
|
-
cli-spinners@3.4.0:
|
|
2709
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
2710
|
-
engines: {node: '>=18.20'}
|
|
2711
|
-
|
|
2712
2744
|
cli-width@4.1.0:
|
|
2713
2745
|
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
|
|
2714
2746
|
engines: {node: '>= 12'}
|
|
@@ -2801,8 +2833,8 @@ packages:
|
|
|
2801
2833
|
typescript:
|
|
2802
2834
|
optional: true
|
|
2803
2835
|
|
|
2804
|
-
coze-coding-dev-sdk@0.7.
|
|
2805
|
-
resolution: {integrity: sha512-
|
|
2836
|
+
coze-coding-dev-sdk@0.7.15:
|
|
2837
|
+
resolution: {integrity: sha512-3L69Im84APAgGNqalrrOH05IG0PUCjaKaeLNztMRPe37b0yuc/woqjy7NYeYTjONWWg8aZEFEzCRXNODStDC8Q==}
|
|
2806
2838
|
engines: {node: '>=18.0.0'}
|
|
2807
2839
|
hasBin: true
|
|
2808
2840
|
|
|
@@ -3692,6 +3724,10 @@ packages:
|
|
|
3692
3724
|
resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
|
|
3693
3725
|
engines: {node: '>=18.18.0'}
|
|
3694
3726
|
|
|
3727
|
+
iceberg-js@0.8.1:
|
|
3728
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
3729
|
+
engines: {node: '>=20.0.0'}
|
|
3730
|
+
|
|
3695
3731
|
iconv-lite@0.7.2:
|
|
3696
3732
|
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
|
3697
3733
|
engines: {node: '>=0.10.0'}
|
|
@@ -4149,10 +4185,6 @@ packages:
|
|
|
4149
4185
|
resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
|
|
4150
4186
|
engines: {node: '>=18'}
|
|
4151
4187
|
|
|
4152
|
-
log-symbols@7.0.1:
|
|
4153
|
-
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
4154
|
-
engines: {node: '>=18'}
|
|
4155
|
-
|
|
4156
4188
|
loose-envify@1.4.0:
|
|
4157
4189
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
4158
4190
|
hasBin: true
|
|
@@ -4411,10 +4443,6 @@ packages:
|
|
|
4411
4443
|
resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
|
|
4412
4444
|
engines: {node: '>=18'}
|
|
4413
4445
|
|
|
4414
|
-
ora@9.1.0:
|
|
4415
|
-
resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
|
|
4416
|
-
engines: {node: '>=20'}
|
|
4417
|
-
|
|
4418
4446
|
outvariant@1.4.3:
|
|
4419
4447
|
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
|
|
4420
4448
|
|
|
@@ -4509,9 +4537,6 @@ packages:
|
|
|
4509
4537
|
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
|
4510
4538
|
engines: {node: '>=8'}
|
|
4511
4539
|
|
|
4512
|
-
pg-cloudflare@1.3.0:
|
|
4513
|
-
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
4514
|
-
|
|
4515
4540
|
pg-connection-string@2.10.1:
|
|
4516
4541
|
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
4517
4542
|
|
|
@@ -4986,10 +5011,6 @@ packages:
|
|
|
4986
5011
|
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
4987
5012
|
engines: {node: '>=18'}
|
|
4988
5013
|
|
|
4989
|
-
string-width@8.1.0:
|
|
4990
|
-
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
4991
|
-
engines: {node: '>=20'}
|
|
4992
|
-
|
|
4993
5014
|
string.prototype.includes@2.0.1:
|
|
4994
5015
|
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
4995
5016
|
engines: {node: '>= 0.4'}
|
|
@@ -5148,11 +5169,6 @@ packages:
|
|
|
5148
5169
|
resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
|
|
5149
5170
|
engines: {node: '>=16'}
|
|
5150
5171
|
|
|
5151
|
-
transliteration@2.6.1:
|
|
5152
|
-
resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
|
|
5153
|
-
engines: {node: '>=20.0.0'}
|
|
5154
|
-
hasBin: true
|
|
5155
|
-
|
|
5156
5172
|
ts-api-utils@2.4.0:
|
|
5157
5173
|
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
5158
5174
|
engines: {node: '>=18.12'}
|
|
@@ -5369,6 +5385,18 @@ packages:
|
|
|
5369
5385
|
wrappy@1.0.2:
|
|
5370
5386
|
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
5371
5387
|
|
|
5388
|
+
ws@8.19.0:
|
|
5389
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
5390
|
+
engines: {node: '>=10.0.0'}
|
|
5391
|
+
peerDependencies:
|
|
5392
|
+
bufferutil: ^4.0.1
|
|
5393
|
+
utf-8-validate: '>=5.0.2'
|
|
5394
|
+
peerDependenciesMeta:
|
|
5395
|
+
bufferutil:
|
|
5396
|
+
optional: true
|
|
5397
|
+
utf-8-validate:
|
|
5398
|
+
optional: true
|
|
5399
|
+
|
|
5372
5400
|
wsl-utils@0.3.1:
|
|
5373
5401
|
resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
|
|
5374
5402
|
engines: {node: '>=20'}
|
|
@@ -6538,14 +6566,14 @@ snapshots:
|
|
|
6538
6566
|
'@jridgewell/resolve-uri': 3.1.2
|
|
6539
6567
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
6540
6568
|
|
|
6541
|
-
'@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6))':
|
|
6569
|
+
'@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))':
|
|
6542
6570
|
dependencies:
|
|
6543
6571
|
'@cfworker/json-schema': 4.1.1
|
|
6544
6572
|
ansi-styles: 5.2.0
|
|
6545
6573
|
camelcase: 6.3.0
|
|
6546
6574
|
decamelize: 1.2.0
|
|
6547
6575
|
js-tiktoken: 1.0.21
|
|
6548
|
-
langsmith: 0.4.9(openai@6.16.0(zod@4.3.6))
|
|
6576
|
+
langsmith: 0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6549
6577
|
mustache: 4.2.0
|
|
6550
6578
|
p-queue: 6.6.2
|
|
6551
6579
|
uuid: 10.0.0
|
|
@@ -6556,11 +6584,11 @@ snapshots:
|
|
|
6556
6584
|
- '@opentelemetry/sdk-trace-base'
|
|
6557
6585
|
- openai
|
|
6558
6586
|
|
|
6559
|
-
'@langchain/openai@1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))':
|
|
6587
|
+
'@langchain/openai@1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)':
|
|
6560
6588
|
dependencies:
|
|
6561
|
-
'@langchain/core': 1.1.17(openai@6.16.0(zod@4.3.6))
|
|
6589
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6562
6590
|
js-tiktoken: 1.0.21
|
|
6563
|
-
openai: 6.16.0(zod@4.3.6)
|
|
6591
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
6564
6592
|
zod: 4.3.6
|
|
6565
6593
|
transitivePeerDependencies:
|
|
6566
6594
|
- ws
|
|
@@ -7739,6 +7767,44 @@ snapshots:
|
|
|
7739
7767
|
|
|
7740
7768
|
'@standard-schema/utils@0.3.0': {}
|
|
7741
7769
|
|
|
7770
|
+
'@supabase/auth-js@2.95.3':
|
|
7771
|
+
dependencies:
|
|
7772
|
+
tslib: 2.8.1
|
|
7773
|
+
|
|
7774
|
+
'@supabase/functions-js@2.95.3':
|
|
7775
|
+
dependencies:
|
|
7776
|
+
tslib: 2.8.1
|
|
7777
|
+
|
|
7778
|
+
'@supabase/postgrest-js@2.95.3':
|
|
7779
|
+
dependencies:
|
|
7780
|
+
tslib: 2.8.1
|
|
7781
|
+
|
|
7782
|
+
'@supabase/realtime-js@2.95.3':
|
|
7783
|
+
dependencies:
|
|
7784
|
+
'@types/phoenix': 1.6.7
|
|
7785
|
+
'@types/ws': 8.18.1
|
|
7786
|
+
tslib: 2.8.1
|
|
7787
|
+
ws: 8.19.0
|
|
7788
|
+
transitivePeerDependencies:
|
|
7789
|
+
- bufferutil
|
|
7790
|
+
- utf-8-validate
|
|
7791
|
+
|
|
7792
|
+
'@supabase/storage-js@2.95.3':
|
|
7793
|
+
dependencies:
|
|
7794
|
+
iceberg-js: 0.8.1
|
|
7795
|
+
tslib: 2.8.1
|
|
7796
|
+
|
|
7797
|
+
'@supabase/supabase-js@2.95.3':
|
|
7798
|
+
dependencies:
|
|
7799
|
+
'@supabase/auth-js': 2.95.3
|
|
7800
|
+
'@supabase/functions-js': 2.95.3
|
|
7801
|
+
'@supabase/postgrest-js': 2.95.3
|
|
7802
|
+
'@supabase/realtime-js': 2.95.3
|
|
7803
|
+
'@supabase/storage-js': 2.95.3
|
|
7804
|
+
transitivePeerDependencies:
|
|
7805
|
+
- bufferutil
|
|
7806
|
+
- utf-8-validate
|
|
7807
|
+
|
|
7742
7808
|
'@swc/helpers@0.5.15':
|
|
7743
7809
|
dependencies:
|
|
7744
7810
|
tslib: 2.8.1
|
|
@@ -7875,6 +7941,8 @@ snapshots:
|
|
|
7875
7941
|
pg-protocol: 1.11.0
|
|
7876
7942
|
pg-types: 2.2.0
|
|
7877
7943
|
|
|
7944
|
+
'@types/phoenix@1.6.7': {}
|
|
7945
|
+
|
|
7878
7946
|
'@types/react-dom@19.2.3(@types/react@19.2.10)':
|
|
7879
7947
|
dependencies:
|
|
7880
7948
|
'@types/react': 19.2.10
|
|
@@ -7893,6 +7961,10 @@ snapshots:
|
|
|
7893
7961
|
|
|
7894
7962
|
'@types/validate-npm-package-name@4.0.2': {}
|
|
7895
7963
|
|
|
7964
|
+
'@types/ws@8.18.1':
|
|
7965
|
+
dependencies:
|
|
7966
|
+
'@types/node': 20.19.30
|
|
7967
|
+
|
|
7896
7968
|
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7897
7969
|
dependencies:
|
|
7898
7970
|
'@eslint-community/regexpp': 4.12.2
|
|
@@ -8407,8 +8479,6 @@ snapshots:
|
|
|
8407
8479
|
|
|
8408
8480
|
cli-spinners@2.9.2: {}
|
|
8409
8481
|
|
|
8410
|
-
cli-spinners@3.4.0: {}
|
|
8411
|
-
|
|
8412
8482
|
cli-width@4.1.0: {}
|
|
8413
8483
|
|
|
8414
8484
|
client-only@0.0.1: {}
|
|
@@ -8491,56 +8561,19 @@ snapshots:
|
|
|
8491
8561
|
optionalDependencies:
|
|
8492
8562
|
typescript: 5.9.3
|
|
8493
8563
|
|
|
8494
|
-
coze-coding-dev-sdk@0.7.
|
|
8564
|
+
coze-coding-dev-sdk@0.7.15(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
|
|
8495
8565
|
dependencies:
|
|
8496
|
-
'@
|
|
8497
|
-
'@
|
|
8498
|
-
'@langchain/core': 1.1.17(openai@6.16.0(zod@4.3.6))
|
|
8499
|
-
'@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))
|
|
8566
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
8567
|
+
'@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
|
|
8500
8568
|
axios: 1.13.4
|
|
8501
|
-
chalk: 5.6.2
|
|
8502
|
-
commander: 14.0.2
|
|
8503
|
-
drizzle-kit: 0.31.8
|
|
8504
|
-
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
8505
|
-
ora: 9.1.0
|
|
8506
8569
|
pg: 8.17.2
|
|
8507
|
-
transliteration: 2.6.1
|
|
8508
8570
|
transitivePeerDependencies:
|
|
8509
|
-
- '@aws-sdk/client-rds-data'
|
|
8510
|
-
- '@cloudflare/workers-types'
|
|
8511
|
-
- '@electric-sql/pglite'
|
|
8512
|
-
- '@libsql/client'
|
|
8513
|
-
- '@libsql/client-wasm'
|
|
8514
|
-
- '@neondatabase/serverless'
|
|
8515
|
-
- '@op-engineering/op-sqlite'
|
|
8516
8571
|
- '@opentelemetry/api'
|
|
8517
8572
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
8518
8573
|
- '@opentelemetry/sdk-trace-base'
|
|
8519
|
-
- '@planetscale/database'
|
|
8520
|
-
- '@prisma/client'
|
|
8521
|
-
- '@tidbcloud/serverless'
|
|
8522
|
-
- '@types/better-sqlite3'
|
|
8523
|
-
- '@types/pg'
|
|
8524
|
-
- '@types/sql.js'
|
|
8525
|
-
- '@upstash/redis'
|
|
8526
|
-
- '@vercel/postgres'
|
|
8527
|
-
- '@xata.io/client'
|
|
8528
|
-
- aws-crt
|
|
8529
|
-
- better-sqlite3
|
|
8530
|
-
- bun-types
|
|
8531
8574
|
- debug
|
|
8532
|
-
- expo-sqlite
|
|
8533
|
-
- gel
|
|
8534
|
-
- knex
|
|
8535
|
-
- kysely
|
|
8536
|
-
- mysql2
|
|
8537
8575
|
- openai
|
|
8538
8576
|
- pg-native
|
|
8539
|
-
- postgres
|
|
8540
|
-
- prisma
|
|
8541
|
-
- sql.js
|
|
8542
|
-
- sqlite3
|
|
8543
|
-
- supports-color
|
|
8544
8577
|
- ws
|
|
8545
8578
|
|
|
8546
8579
|
cross-spawn@7.0.6:
|
|
@@ -9516,6 +9549,8 @@ snapshots:
|
|
|
9516
9549
|
|
|
9517
9550
|
human-signals@8.0.1: {}
|
|
9518
9551
|
|
|
9552
|
+
iceberg-js@0.8.1: {}
|
|
9553
|
+
|
|
9519
9554
|
iconv-lite@0.7.2:
|
|
9520
9555
|
dependencies:
|
|
9521
9556
|
safer-buffer: 2.1.2
|
|
@@ -9797,7 +9832,7 @@ snapshots:
|
|
|
9797
9832
|
|
|
9798
9833
|
kleur@4.1.5: {}
|
|
9799
9834
|
|
|
9800
|
-
langsmith@0.4.9(openai@6.16.0(zod@4.3.6)):
|
|
9835
|
+
langsmith@0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6)):
|
|
9801
9836
|
dependencies:
|
|
9802
9837
|
'@types/uuid': 10.0.0
|
|
9803
9838
|
chalk: 4.1.2
|
|
@@ -9806,7 +9841,7 @@ snapshots:
|
|
|
9806
9841
|
semver: 7.7.3
|
|
9807
9842
|
uuid: 10.0.0
|
|
9808
9843
|
optionalDependencies:
|
|
9809
|
-
openai: 6.16.0(zod@4.3.6)
|
|
9844
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
9810
9845
|
|
|
9811
9846
|
language-subtag-registry@0.3.23: {}
|
|
9812
9847
|
|
|
@@ -9892,11 +9927,6 @@ snapshots:
|
|
|
9892
9927
|
chalk: 5.6.2
|
|
9893
9928
|
is-unicode-supported: 1.3.0
|
|
9894
9929
|
|
|
9895
|
-
log-symbols@7.0.1:
|
|
9896
|
-
dependencies:
|
|
9897
|
-
is-unicode-supported: 2.1.0
|
|
9898
|
-
yoctocolors: 2.1.2
|
|
9899
|
-
|
|
9900
9930
|
loose-envify@1.4.0:
|
|
9901
9931
|
dependencies:
|
|
9902
9932
|
js-tokens: 4.0.0
|
|
@@ -10134,8 +10164,9 @@ snapshots:
|
|
|
10134
10164
|
is-docker: 2.2.1
|
|
10135
10165
|
is-wsl: 2.2.0
|
|
10136
10166
|
|
|
10137
|
-
openai@6.16.0(zod@4.3.6):
|
|
10167
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.6):
|
|
10138
10168
|
optionalDependencies:
|
|
10169
|
+
ws: 8.19.0
|
|
10139
10170
|
zod: 4.3.6
|
|
10140
10171
|
|
|
10141
10172
|
optionator@0.9.4:
|
|
@@ -10159,17 +10190,6 @@ snapshots:
|
|
|
10159
10190
|
string-width: 7.2.0
|
|
10160
10191
|
strip-ansi: 7.1.2
|
|
10161
10192
|
|
|
10162
|
-
ora@9.1.0:
|
|
10163
|
-
dependencies:
|
|
10164
|
-
chalk: 5.6.2
|
|
10165
|
-
cli-cursor: 5.0.0
|
|
10166
|
-
cli-spinners: 3.4.0
|
|
10167
|
-
is-interactive: 2.0.0
|
|
10168
|
-
is-unicode-supported: 2.1.0
|
|
10169
|
-
log-symbols: 7.0.1
|
|
10170
|
-
stdin-discarder: 0.2.2
|
|
10171
|
-
string-width: 8.1.0
|
|
10172
|
-
|
|
10173
10193
|
outvariant@1.4.3: {}
|
|
10174
10194
|
|
|
10175
10195
|
own-keys@1.0.1:
|
|
@@ -10244,9 +10264,6 @@ snapshots:
|
|
|
10244
10264
|
|
|
10245
10265
|
path-type@4.0.0: {}
|
|
10246
10266
|
|
|
10247
|
-
pg-cloudflare@1.3.0:
|
|
10248
|
-
optional: true
|
|
10249
|
-
|
|
10250
10267
|
pg-connection-string@2.10.1: {}
|
|
10251
10268
|
|
|
10252
10269
|
pg-int8@1.0.1: {}
|
|
@@ -10272,8 +10289,6 @@ snapshots:
|
|
|
10272
10289
|
pg-protocol: 1.11.0
|
|
10273
10290
|
pg-types: 2.2.0
|
|
10274
10291
|
pgpass: 1.0.5
|
|
10275
|
-
optionalDependencies:
|
|
10276
|
-
pg-cloudflare: 1.3.0
|
|
10277
10292
|
|
|
10278
10293
|
pgpass@1.0.5:
|
|
10279
10294
|
dependencies:
|
|
@@ -10863,11 +10878,6 @@ snapshots:
|
|
|
10863
10878
|
get-east-asian-width: 1.4.0
|
|
10864
10879
|
strip-ansi: 7.1.2
|
|
10865
10880
|
|
|
10866
|
-
string-width@8.1.0:
|
|
10867
|
-
dependencies:
|
|
10868
|
-
get-east-asian-width: 1.4.0
|
|
10869
|
-
strip-ansi: 7.1.2
|
|
10870
|
-
|
|
10871
10881
|
string.prototype.includes@2.0.1:
|
|
10872
10882
|
dependencies:
|
|
10873
10883
|
call-bind: 1.0.8
|
|
@@ -11020,8 +11030,6 @@ snapshots:
|
|
|
11020
11030
|
dependencies:
|
|
11021
11031
|
tldts: 7.0.19
|
|
11022
11032
|
|
|
11023
|
-
transliteration@2.6.1: {}
|
|
11024
|
-
|
|
11025
11033
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
11026
11034
|
dependencies:
|
|
11027
11035
|
typescript: 5.9.3
|
|
@@ -11324,6 +11332,8 @@ snapshots:
|
|
|
11324
11332
|
|
|
11325
11333
|
wrappy@1.0.2: {}
|
|
11326
11334
|
|
|
11335
|
+
ws@8.19.0: {}
|
|
11336
|
+
|
|
11327
11337
|
wsl-utils@0.3.1:
|
|
11328
11338
|
dependencies:
|
|
11329
11339
|
is-wsl: 3.1.0
|