@coze-arch/cli 0.0.1-alpha.77c1b0 → 0.0.1-alpha.912cd5
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/client/scripts/install-missing-deps.js +36 -12
- package/lib/__templates__/expo/metro.config.js +15 -15
- package/lib/__templates__/expo/package.json +10 -2
- package/lib/__templates__/expo/pnpm-lock.yaml +49 -4
- package/lib/__templates__/nextjs/.babelrc +15 -0
- package/lib/__templates__/nextjs/README.md +341 -19
- package/lib/__templates__/nextjs/components.json +21 -0
- package/lib/__templates__/nextjs/package.json +48 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +6399 -1356
- package/lib/__templates__/nextjs/scripts/dev.sh +2 -1
- package/lib/__templates__/nextjs/server.mjs +50 -0
- package/lib/__templates__/nextjs/src/app/globals.css +99 -8
- package/lib/__templates__/nextjs/src/app/layout.tsx +4 -0
- package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
- package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
- package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
- package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
- package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
- package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
- package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
- package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
- package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
- package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
- package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
- package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
- package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
- package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
- package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
- package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
- package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
- package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
- package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
- package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
- package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
- package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
- package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
- package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
- package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
- package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
- package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
- package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
- package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
- package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
- package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +56 -0
- package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
- package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
- package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
- package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +726 -0
- package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
- package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
- package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
- package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
- package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
- package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
- package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
- package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
- package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
- package/lib/__templates__/nextjs/template.config.js +1 -1
- package/lib/__templates__/templates.json +0 -38
- package/lib/__templates__/vite/template.config.js +1 -1
- package/lib/cli.js +19 -2
- package/package.json +3 -2
- package/lib/__templates__/react-rsbuild/.coze +0 -11
- package/lib/__templates__/react-rsbuild/.vscode/settings.json +0 -121
- package/lib/__templates__/react-rsbuild/README.md +0 -61
- package/lib/__templates__/react-rsbuild/_gitignore +0 -97
- package/lib/__templates__/react-rsbuild/_npmrc +0 -22
- package/lib/__templates__/react-rsbuild/package.json +0 -31
- package/lib/__templates__/react-rsbuild/pnpm-lock.yaml +0 -997
- package/lib/__templates__/react-rsbuild/rsbuild.config.ts +0 -13
- package/lib/__templates__/react-rsbuild/scripts/build.sh +0 -14
- package/lib/__templates__/react-rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/react-rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/react-rsbuild/src/App.tsx +0 -60
- package/lib/__templates__/react-rsbuild/src/index.css +0 -21
- package/lib/__templates__/react-rsbuild/src/index.html +0 -12
- package/lib/__templates__/react-rsbuild/src/index.tsx +0 -16
- package/lib/__templates__/react-rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/react-rsbuild/template.config.js +0 -54
- package/lib/__templates__/react-rsbuild/tsconfig.json +0 -17
- package/lib/__templates__/rsbuild/.coze +0 -11
- package/lib/__templates__/rsbuild/.vscode/settings.json +0 -7
- package/lib/__templates__/rsbuild/README.md +0 -61
- package/lib/__templates__/rsbuild/_gitignore +0 -97
- package/lib/__templates__/rsbuild/_npmrc +0 -22
- package/lib/__templates__/rsbuild/package.json +0 -24
- package/lib/__templates__/rsbuild/pnpm-lock.yaml +0 -888
- package/lib/__templates__/rsbuild/rsbuild.config.ts +0 -12
- package/lib/__templates__/rsbuild/scripts/build.sh +0 -14
- package/lib/__templates__/rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/rsbuild/src/index.css +0 -21
- package/lib/__templates__/rsbuild/src/index.html +0 -12
- package/lib/__templates__/rsbuild/src/index.ts +0 -5
- package/lib/__templates__/rsbuild/src/main.ts +0 -65
- package/lib/__templates__/rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/rsbuild/template.config.js +0 -56
- package/lib/__templates__/rsbuild/tsconfig.json +0 -16
|
@@ -18,7 +18,7 @@ try {
|
|
|
18
18
|
try {
|
|
19
19
|
depcheckOutput = execSync('npx depcheck --json', {
|
|
20
20
|
encoding: 'utf-8',
|
|
21
|
-
stdio: ['pipe', 'pipe', 'pipe']
|
|
21
|
+
stdio: ['pipe', 'pipe', 'pipe'],
|
|
22
22
|
});
|
|
23
23
|
} catch (execError) {
|
|
24
24
|
// depcheck 返回非零退出码时仍然有输出
|
|
@@ -30,10 +30,34 @@ try {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
const result = JSON.parse(depcheckOutput);
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
// 获取缺失的依赖
|
|
35
35
|
const missing = result.missing || {};
|
|
36
|
-
|
|
36
|
+
|
|
37
|
+
// 需要忽略的文件模式
|
|
38
|
+
const ignoreFilePatterns = [
|
|
39
|
+
/template\.config\.(ts|js)$/, // 模板配置文件
|
|
40
|
+
/\.template\./, // 其他模板文件
|
|
41
|
+
];
|
|
42
|
+
|
|
43
|
+
// 过滤包:排除内部别名和只被模板文件引用的包
|
|
44
|
+
const missingPackages = Object.keys(missing).filter(pkg => {
|
|
45
|
+
// 排除内部路径别名
|
|
46
|
+
if (pkg.startsWith('@api/') || pkg.startsWith('@/') || pkg === '@api') {
|
|
47
|
+
return false;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// 获取引用该包的文件列表
|
|
51
|
+
const referencingFiles = missing[pkg] || [];
|
|
52
|
+
|
|
53
|
+
// 过滤掉模板配置文件
|
|
54
|
+
const nonTemplateFiles = referencingFiles.filter(file => {
|
|
55
|
+
return !ignoreFilePatterns.some(pattern => pattern.test(file));
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// 只有当存在非模板文件引用时才保留该包
|
|
59
|
+
return nonTemplateFiles.length > 0;
|
|
60
|
+
});
|
|
37
61
|
|
|
38
62
|
if (missingPackages.length === 0) {
|
|
39
63
|
console.log('✅ 没有发现缺失的依赖!');
|
|
@@ -44,30 +68,31 @@ try {
|
|
|
44
68
|
missingPackages.forEach((pkg, index) => {
|
|
45
69
|
const files = missing[pkg];
|
|
46
70
|
console.log(` ${index + 1}. ${pkg}`);
|
|
47
|
-
console.log(
|
|
71
|
+
console.log(
|
|
72
|
+
` 被引用于: ${files.slice(0, 2).join(', ')}${files.length > 2 ? ' ...' : ''}`,
|
|
73
|
+
);
|
|
48
74
|
});
|
|
49
75
|
|
|
50
76
|
console.log('\n🚀 开始安装...\n');
|
|
51
77
|
|
|
52
78
|
// 使用 expo install 安装所有缺失的包
|
|
53
79
|
const packagesToInstall = missingPackages.join(' ');
|
|
54
|
-
|
|
80
|
+
|
|
55
81
|
try {
|
|
56
82
|
execSync(`pnpm expo install ${packagesToInstall}`, {
|
|
57
|
-
stdio: 'inherit'
|
|
83
|
+
stdio: 'inherit',
|
|
58
84
|
});
|
|
59
|
-
|
|
85
|
+
|
|
60
86
|
console.log('\n✅ 所有缺失的依赖已安装完成!');
|
|
61
87
|
} catch (installError) {
|
|
62
88
|
console.log('\n⚠️ expo install 失败,尝试使用 npm install...\n');
|
|
63
|
-
|
|
89
|
+
|
|
64
90
|
execSync(`npm install ${packagesToInstall}`, {
|
|
65
|
-
stdio: 'inherit'
|
|
91
|
+
stdio: 'inherit',
|
|
66
92
|
});
|
|
67
|
-
|
|
93
|
+
|
|
68
94
|
console.log('\n✅ 所有缺失的依赖已通过 npm 安装完成!');
|
|
69
95
|
}
|
|
70
|
-
|
|
71
96
|
} catch (error) {
|
|
72
97
|
if (error.message.includes('depcheck')) {
|
|
73
98
|
console.error('❌ depcheck 未安装或运行失败');
|
|
@@ -77,4 +102,3 @@ try {
|
|
|
77
102
|
}
|
|
78
103
|
process.exit(1);
|
|
79
104
|
}
|
|
80
|
-
|
|
@@ -8,29 +8,29 @@ const config = getDefaultConfig(__dirname);
|
|
|
8
8
|
const existingBlockList = [].concat(config.resolver.blockList || []);
|
|
9
9
|
|
|
10
10
|
config.resolver.blockList = [
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
...existingBlockList,
|
|
12
|
+
/.*\/\.expo\/.*/, // Expo 的缓存和构建产物目录
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
// 1. 原生代码 (Java/C++/Objective-C)
|
|
15
|
+
/.*\/react-native\/ReactAndroid\/.*/,
|
|
16
|
+
/.*\/react-native\/ReactCommon\/.*/,
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
// 2. 纯开发和调试工具
|
|
19
|
+
// 这些工具只在开发电脑上运行,不会被打包到应用中
|
|
20
|
+
/.*\/@typescript-eslint\/eslint-plugin\/.*/,
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
// 3. 构建时数据
|
|
23
|
+
// 这个数据库只在打包过程中使用,应用运行时不需要
|
|
24
|
+
/.*\/caniuse-lite\/data\/.*/,
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
// 4. 通用规则
|
|
27
|
+
/.*\/__tests__\/.*/, // 排除所有测试目录
|
|
28
|
+
/.*\.git\/.*/, // 排除 Git 目录
|
|
29
29
|
];
|
|
30
30
|
|
|
31
31
|
/*
|
|
32
32
|
const apiProxy = createProxyMiddleware({
|
|
33
|
-
target: 'http://localhost:
|
|
33
|
+
target: 'http://localhost:5000',
|
|
34
34
|
logLevel: 'debug',
|
|
35
35
|
});
|
|
36
36
|
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
"build": "bash .cozeproj/scripts/deploy_build.sh",
|
|
8
8
|
"check-deps": "npx depcheck",
|
|
9
9
|
"dev": "bash .cozeproj/scripts/deploy_run.sh",
|
|
10
|
-
"install-missing": "node ./client/scripts/install-missing-deps.js",
|
|
11
|
-
"lint": "expo lint",
|
|
12
10
|
"preinstall": "npx only-allow pnpm",
|
|
13
11
|
"postinstall": "node ./client/scripts/install-missing-deps.js",
|
|
12
|
+
"install-missing": "node ./client/scripts/install-missing-deps.js",
|
|
13
|
+
"lint": "expo lint",
|
|
14
14
|
"server": "NODE_ENV=development tsx ./src/index.ts",
|
|
15
15
|
"start": "expo start --web",
|
|
16
16
|
"test": "jest --watchAll"
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
"preset": "jest-expo"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@aws-sdk/client-s3": "^3.958.0",
|
|
23
|
+
"@aws-sdk/lib-storage": "^3.958.0",
|
|
22
24
|
"@expo/metro-runtime": "^6.1.2",
|
|
23
25
|
"@expo/vector-icons": "^15.0.0",
|
|
24
26
|
"@react-native-async-storage/async-storage": "^2.2.0",
|
|
@@ -30,8 +32,12 @@
|
|
|
30
32
|
"@react-navigation/native": "^7.0.14",
|
|
31
33
|
"ajv": "^8.17.1",
|
|
32
34
|
"ajv-formats": "^3.0.1",
|
|
35
|
+
"connect": "^3.7.0",
|
|
33
36
|
"coze-coding-dev-sdk": "0.5.0",
|
|
34
37
|
"dayjs": "^1.11.19",
|
|
38
|
+
"drizzle-kit": "^0.31.8",
|
|
39
|
+
"drizzle-orm": "^0.45.1",
|
|
40
|
+
"drizzle-zod": "^0.8.3",
|
|
35
41
|
"expo": "^54.0.7",
|
|
36
42
|
"expo-auth-session": "^7.0.9",
|
|
37
43
|
"expo-av": "~16.0.6",
|
|
@@ -52,6 +58,7 @@
|
|
|
52
58
|
"expo-system-ui": "~6.0.9",
|
|
53
59
|
"expo-web-browser": "~15.0.10",
|
|
54
60
|
"express": "^4.22.1",
|
|
61
|
+
"pg": "^8.16.3",
|
|
55
62
|
"react": "19.1.0",
|
|
56
63
|
"react-dom": "19.1.0",
|
|
57
64
|
"react-native": "0.81.5",
|
|
@@ -74,6 +81,7 @@
|
|
|
74
81
|
"@eslint/js": "^9.27.0",
|
|
75
82
|
"@types/express": "^5.0.6",
|
|
76
83
|
"@types/jest": "^29.5.12",
|
|
84
|
+
"@types/pg": "^8.16.0",
|
|
77
85
|
"@types/react": "~19.1.0",
|
|
78
86
|
"@types/react-test-renderer": "19.1.0",
|
|
79
87
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
@@ -8,6 +8,12 @@ importers:
|
|
|
8
8
|
|
|
9
9
|
.:
|
|
10
10
|
dependencies:
|
|
11
|
+
'@aws-sdk/client-s3':
|
|
12
|
+
specifier: ^3.958.0
|
|
13
|
+
version: 3.958.0
|
|
14
|
+
'@aws-sdk/lib-storage':
|
|
15
|
+
specifier: ^3.958.0
|
|
16
|
+
version: 3.958.0(@aws-sdk/client-s3@3.958.0)
|
|
11
17
|
'@expo/metro-runtime':
|
|
12
18
|
specifier: ^6.1.2
|
|
13
19
|
version: 6.1.2(expo@54.0.30)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -41,12 +47,24 @@ importers:
|
|
|
41
47
|
ajv-formats:
|
|
42
48
|
specifier: ^3.0.1
|
|
43
49
|
version: 3.0.1(ajv@8.17.1)
|
|
50
|
+
connect:
|
|
51
|
+
specifier: ^3.7.0
|
|
52
|
+
version: 3.7.0
|
|
44
53
|
coze-coding-dev-sdk:
|
|
45
54
|
specifier: 0.5.0
|
|
46
|
-
version: 0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
|
|
55
|
+
version: 0.5.0(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
|
|
47
56
|
dayjs:
|
|
48
57
|
specifier: ^1.11.19
|
|
49
58
|
version: 1.11.19
|
|
59
|
+
drizzle-kit:
|
|
60
|
+
specifier: ^0.31.8
|
|
61
|
+
version: 0.31.8
|
|
62
|
+
drizzle-orm:
|
|
63
|
+
specifier: ^0.45.1
|
|
64
|
+
version: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
65
|
+
drizzle-zod:
|
|
66
|
+
specifier: ^0.8.3
|
|
67
|
+
version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2)
|
|
50
68
|
expo:
|
|
51
69
|
specifier: ^54.0.7
|
|
52
70
|
version: 54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -107,6 +125,9 @@ importers:
|
|
|
107
125
|
express:
|
|
108
126
|
specifier: ^4.22.1
|
|
109
127
|
version: 4.22.1
|
|
128
|
+
pg:
|
|
129
|
+
specifier: ^8.16.3
|
|
130
|
+
version: 8.16.3
|
|
110
131
|
react:
|
|
111
132
|
specifier: 19.1.0
|
|
112
133
|
version: 19.1.0
|
|
@@ -168,6 +189,9 @@ importers:
|
|
|
168
189
|
'@types/jest':
|
|
169
190
|
specifier: ^29.5.12
|
|
170
191
|
version: 29.5.14
|
|
192
|
+
'@types/pg':
|
|
193
|
+
specifier: ^8.16.0
|
|
194
|
+
version: 8.16.0
|
|
171
195
|
'@types/react':
|
|
172
196
|
specifier: ~19.1.0
|
|
173
197
|
version: 19.1.17
|
|
@@ -2352,6 +2376,9 @@ packages:
|
|
|
2352
2376
|
'@types/parse-json@4.0.2':
|
|
2353
2377
|
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
|
|
2354
2378
|
|
|
2379
|
+
'@types/pg@8.16.0':
|
|
2380
|
+
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2381
|
+
|
|
2355
2382
|
'@types/qs@6.14.0':
|
|
2356
2383
|
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
|
|
2357
2384
|
|
|
@@ -3384,6 +3411,12 @@ packages:
|
|
|
3384
3411
|
sqlite3:
|
|
3385
3412
|
optional: true
|
|
3386
3413
|
|
|
3414
|
+
drizzle-zod@0.8.3:
|
|
3415
|
+
resolution: {integrity: sha512-66yVOuvGhKJnTdiqj1/Xaaz9/qzOdRJADpDa68enqS6g3t0kpNkwNYjUuaeXgZfO/UWuIM9HIhSlJ6C5ZraMww==}
|
|
3416
|
+
peerDependencies:
|
|
3417
|
+
drizzle-orm: '>=0.36.0'
|
|
3418
|
+
zod: ^3.25.0 || ^4.0.0
|
|
3419
|
+
|
|
3387
3420
|
dunder-proto@1.0.1:
|
|
3388
3421
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
3389
3422
|
engines: {node: '>= 0.4'}
|
|
@@ -9367,6 +9400,12 @@ snapshots:
|
|
|
9367
9400
|
|
|
9368
9401
|
'@types/parse-json@4.0.2': {}
|
|
9369
9402
|
|
|
9403
|
+
'@types/pg@8.16.0':
|
|
9404
|
+
dependencies:
|
|
9405
|
+
'@types/node': 25.0.3
|
|
9406
|
+
pg-protocol: 1.10.3
|
|
9407
|
+
pg-types: 2.2.0
|
|
9408
|
+
|
|
9370
9409
|
'@types/qs@6.14.0': {}
|
|
9371
9410
|
|
|
9372
9411
|
'@types/range-parser@1.2.7': {}
|
|
@@ -10209,7 +10248,7 @@ snapshots:
|
|
|
10209
10248
|
path-type: 4.0.0
|
|
10210
10249
|
yaml: 1.10.2
|
|
10211
10250
|
|
|
10212
|
-
coze-coding-dev-sdk@0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
|
|
10251
|
+
coze-coding-dev-sdk@0.5.0(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
|
|
10213
10252
|
dependencies:
|
|
10214
10253
|
'@aws-sdk/client-s3': 3.958.0
|
|
10215
10254
|
'@aws-sdk/lib-storage': 3.958.0(@aws-sdk/client-s3@3.958.0)
|
|
@@ -10219,7 +10258,7 @@ snapshots:
|
|
|
10219
10258
|
chalk: 5.6.2
|
|
10220
10259
|
commander: 14.0.2
|
|
10221
10260
|
drizzle-kit: 0.31.8
|
|
10222
|
-
drizzle-orm: 0.45.1(pg@8.16.3)
|
|
10261
|
+
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
10223
10262
|
ora: 9.0.0
|
|
10224
10263
|
pg: 8.16.3
|
|
10225
10264
|
transitivePeerDependencies:
|
|
@@ -10475,10 +10514,16 @@ snapshots:
|
|
|
10475
10514
|
transitivePeerDependencies:
|
|
10476
10515
|
- supports-color
|
|
10477
10516
|
|
|
10478
|
-
drizzle-orm@0.45.1(pg@8.16.3):
|
|
10517
|
+
drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3):
|
|
10479
10518
|
optionalDependencies:
|
|
10519
|
+
'@types/pg': 8.16.0
|
|
10480
10520
|
pg: 8.16.3
|
|
10481
10521
|
|
|
10522
|
+
drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2):
|
|
10523
|
+
dependencies:
|
|
10524
|
+
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
10525
|
+
zod: 4.3.2
|
|
10526
|
+
|
|
10482
10527
|
dunder-proto@1.0.1:
|
|
10483
10528
|
dependencies:
|
|
10484
10529
|
call-bind-apply-helpers: 1.0.2
|