@coze-arch/cli 0.0.1-alpha.e772d9 → 0.0.1-alpha.e89608

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.
Files changed (124) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +8 -5
  3. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +6 -5
  4. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  5. package/lib/__templates__/expo/client/eslint.config.mjs +8 -1
  6. package/lib/__templates__/expo/client/metro.config.js +3 -0
  7. package/lib/__templates__/expo/client/package.json +35 -35
  8. package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
  9. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  10. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  11. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  12. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  13. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  14. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  15. package/lib/__templates__/expo/package.json +1 -1
  16. package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +3 -2
  17. package/lib/__templates__/expo/pnpm-lock.yaml +340 -1736
  18. package/lib/__templates__/expo/server/package.json +9 -7
  19. package/lib/__templates__/expo/server/src/index.ts +1 -0
  20. package/lib/__templates__/expo/template.config.js +56 -0
  21. package/lib/__templates__/native-static/.coze +11 -0
  22. package/lib/__templates__/native-static/index.html +33 -0
  23. package/lib/__templates__/native-static/styles/main.css +136 -0
  24. package/lib/__templates__/native-static/template.config.js +22 -0
  25. package/lib/__templates__/nextjs/README.md +5 -0
  26. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  27. package/lib/__templates__/nextjs/next.config.ts +1 -2
  28. package/lib/__templates__/nextjs/package.json +15 -6
  29. package/lib/__templates__/nextjs/pnpm-lock.yaml +1859 -736
  30. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  31. package/lib/__templates__/nextjs/scripts/dev.sh +1 -2
  32. package/lib/__templates__/nextjs/scripts/start.sh +1 -1
  33. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  34. package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
  35. package/lib/__templates__/nextjs/src/server.ts +35 -0
  36. package/lib/__templates__/nextjs/template.config.js +49 -14
  37. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  38. package/lib/__templates__/nuxt-vue/.coze +12 -0
  39. package/lib/__templates__/nuxt-vue/README.md +73 -0
  40. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  41. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  42. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  43. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  44. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  45. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  46. package/lib/__templates__/nuxt-vue/package.json +35 -0
  47. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  48. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  49. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  50. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  51. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  52. package/lib/__templates__/nuxt-vue/scripts/dev.sh +31 -0
  53. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  54. package/lib/__templates__/nuxt-vue/scripts/start.sh +15 -0
  55. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  56. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  57. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  58. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  59. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  60. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  61. package/lib/__templates__/taro/.coze +14 -0
  62. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  63. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  64. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  65. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
  66. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  67. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
  68. package/lib/__templates__/taro/README.md +751 -0
  69. package/lib/__templates__/taro/_gitignore +40 -0
  70. package/lib/__templates__/taro/_npmrc +18 -0
  71. package/lib/__templates__/taro/babel.config.js +12 -0
  72. package/lib/__templates__/taro/config/dev.ts +9 -0
  73. package/lib/__templates__/taro/config/index.ts +223 -0
  74. package/lib/__templates__/taro/config/prod.ts +34 -0
  75. package/lib/__templates__/taro/eslint.config.mjs +80 -0
  76. package/lib/__templates__/taro/key/private.appid.key +0 -0
  77. package/lib/__templates__/taro/package.json +107 -0
  78. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  79. package/lib/__templates__/taro/pnpm-lock.yaml +23100 -0
  80. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  81. package/lib/__templates__/taro/project.config.json +15 -0
  82. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  83. package/lib/__templates__/taro/server/package.json +40 -0
  84. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  85. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  86. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  87. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  88. package/lib/__templates__/taro/server/src/main.ts +49 -0
  89. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  90. package/lib/__templates__/taro/src/app.config.ts +11 -0
  91. package/lib/__templates__/taro/src/app.css +52 -0
  92. package/lib/__templates__/taro/src/app.tsx +9 -0
  93. package/lib/__templates__/taro/src/index.html +39 -0
  94. package/lib/__templates__/taro/src/network.ts +39 -0
  95. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  96. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  97. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  98. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  99. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  100. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
  101. package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
  102. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  103. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  104. package/lib/__templates__/taro/template.config.js +68 -0
  105. package/lib/__templates__/taro/tsconfig.json +29 -0
  106. package/lib/__templates__/taro/types/global.d.ts +32 -0
  107. package/lib/__templates__/templates.json +75 -0
  108. package/lib/__templates__/vite/README.md +189 -11
  109. package/lib/__templates__/vite/_gitignore +1 -0
  110. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  111. package/lib/__templates__/vite/package.json +20 -3
  112. package/lib/__templates__/vite/pnpm-lock.yaml +944 -1551
  113. package/lib/__templates__/vite/scripts/build.sh +4 -1
  114. package/lib/__templates__/vite/scripts/dev.sh +2 -2
  115. package/lib/__templates__/vite/scripts/start.sh +3 -3
  116. package/lib/__templates__/vite/server/index.ts +57 -0
  117. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  118. package/lib/__templates__/vite/server/vite.ts +79 -0
  119. package/lib/__templates__/vite/src/main.ts +17 -47
  120. package/lib/__templates__/vite/template.config.js +49 -14
  121. package/lib/__templates__/vite/tsconfig.json +4 -3
  122. package/lib/__templates__/vite/vite.config.ts +1 -0
  123. package/lib/cli.js +471 -173
  124. package/package.json +7 -3
@@ -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
- "express": "^4.22.1",
12
+ "@supabase/supabase-js": "2.95.3",
13
13
  "cors": "^2.8.5",
14
- "coze-coding-dev-sdk": "^0.7.2",
14
+ "coze-coding-dev-sdk": "^0.7.16",
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
- "typescript": "^5.8.3",
30
- "drizzle-kit": "^0.31.8"
31
+ "tsx": "^4.21.0",
32
+ "typescript": "^5.8.3"
31
33
  }
32
34
  }
@@ -10,6 +10,7 @@ app.use(express.json({ limit: '50mb' }));
10
10
  app.use(express.urlencoded({ limit: '50mb', extended: true }));
11
11
 
12
12
  app.get('/api/v1/health', (req, res) => {
13
+ console.log('Health check success');
13
14
  res.status(200).json({ status: 'ok' });
14
15
  });
15
16
 
@@ -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;
@@ -0,0 +1,11 @@
1
+ [project]
2
+ entrypoint = "index.html"
3
+ requires = ["python-3.12"]
4
+
5
+ [dev]
6
+ build = []
7
+ run = ["python", "-m", "http.server", "5000", "--bind", "0.0.0.0"]
8
+
9
+ [deploy]
10
+ build = []
11
+ run = ["python", "-m", "http.server", "5000", "--bind", "0.0.0.0"]
@@ -0,0 +1,33 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta name="description" content="扣子编程,你的 AI 开发伙伴已就位" />
7
+ <title>扣子编程 - AI 开发伙伴</title>
8
+ <link rel="stylesheet" href="/styles/main.css" />
9
+ </head>
10
+ <body>
11
+ <div id="app">
12
+ <main class="main-wrapper">
13
+ <div class="content-container">
14
+ <img
15
+ src="https://lf-coze-web-cdn.coze.cn/obj/eden-cn/lm-lgvj/ljhwZthlaukjlkulzlp/coze-coding/icon/coze-coding.gif"
16
+ alt="扣子编程 Logo"
17
+ class="logo-image"
18
+ />
19
+ <div>
20
+ <div class="text-container">
21
+ <h1 class="heading">
22
+ 应用开发中
23
+ </h1>
24
+ <p class="description">
25
+ 请稍后,页面即将呈现
26
+ </p>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </main>
31
+ </div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,136 @@
1
+ /* ABOUTME: Main stylesheet for native-static template */
2
+ /* ABOUTME: Provides layout, typography, and theme styles without external dependencies */
3
+
4
+ /* Reset and base styles */
5
+ * {
6
+ margin: 0;
7
+ padding: 0;
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ :root {
12
+ /* Light theme colors */
13
+ --background: #ffffff;
14
+ --foreground: #171717;
15
+ --muted-foreground: #71717a;
16
+
17
+ /* Spacing */
18
+ --spacing-2: 0.5rem;
19
+ --spacing-4: 1rem;
20
+ --spacing-16: 4rem;
21
+ --spacing-32: 8rem;
22
+
23
+ /* Typography */
24
+ --font-size-base: 1rem;
25
+ --font-size-sm: 0.875rem;
26
+ --line-height-tight: 1.25;
27
+ --line-height-relaxed: 2;
28
+ --letter-spacing-tight: -0.025em;
29
+
30
+ /* Transitions */
31
+ --transition-duration: 300ms;
32
+ }
33
+
34
+ /* Dark theme */
35
+ @media (prefers-color-scheme: dark) {
36
+ :root {
37
+ --background: #0a0a0a;
38
+ --foreground: #ededed;
39
+ --muted-foreground: #a1a1aa;
40
+ }
41
+ }
42
+
43
+ body {
44
+ background: var(--background);
45
+ color: var(--foreground);
46
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
47
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
48
+ sans-serif;
49
+ -webkit-font-smoothing: antialiased;
50
+ -moz-osx-font-smoothing: grayscale;
51
+ margin: 0;
52
+ padding: 0;
53
+ }
54
+
55
+ /* App container */
56
+ #app {
57
+ display: flex;
58
+ height: 100%;
59
+ min-height: 100vh;
60
+ align-items: center;
61
+ justify-content: center;
62
+ overflow: hidden;
63
+ }
64
+
65
+ /* Main content wrapper */
66
+ .main-wrapper {
67
+ display: flex;
68
+ width: 100%;
69
+ height: 100%;
70
+ max-width: 48rem;
71
+ flex-direction: column;
72
+ align-items: center;
73
+ justify-content: center;
74
+ padding-left: var(--spacing-16);
75
+ padding-right: var(--spacing-16);
76
+ padding-top: var(--spacing-32);
77
+ padding-bottom: var(--spacing-32);
78
+ }
79
+
80
+ /* Content container */
81
+ .content-container {
82
+ display: flex;
83
+ flex-direction: column;
84
+ align-items: center;
85
+ justify-content: space-between;
86
+ gap: var(--spacing-4);
87
+ }
88
+
89
+ /* Logo image */
90
+ .logo-image {
91
+ width: 156px;
92
+ height: 130px;
93
+ object-fit: contain;
94
+ }
95
+
96
+ /* Text container */
97
+ .text-container {
98
+ display: flex;
99
+ flex-direction: column;
100
+ align-items: center;
101
+ gap: var(--spacing-2);
102
+ text-align: center;
103
+ }
104
+
105
+ /* Heading */
106
+ .heading {
107
+ max-width: 36rem;
108
+ font-size: var(--font-size-base);
109
+ font-weight: 600;
110
+ line-height: var(--line-height-tight);
111
+ letter-spacing: var(--letter-spacing-tight);
112
+ color: var(--foreground);
113
+ }
114
+
115
+ /* Description text */
116
+ .description {
117
+ max-width: 42rem;
118
+ font-size: var(--font-size-sm);
119
+ line-height: var(--line-height-relaxed);
120
+ color: var(--muted-foreground);
121
+ }
122
+
123
+ /* Responsive design */
124
+ @media (max-width: 640px) {
125
+ .main-wrapper {
126
+ padding-left: 1rem;
127
+ padding-right: 1rem;
128
+ padding-top: 2rem;
129
+ padding-bottom: 2rem;
130
+ }
131
+
132
+ .logo-image {
133
+ width: 120px;
134
+ height: 100px;
135
+ }
136
+ }
@@ -0,0 +1,22 @@
1
+
2
+
3
+
4
+
5
+
6
+ // start_aigc
7
+ const config = {
8
+ description:
9
+ 'Native Static(纯静态):`coze init ${COZE_WORKSPACE_PATH} --template native-static`\n' +
10
+ '- 适用:纯静态 HTML/CSS/JS 项目、静态网站\n' +
11
+ '- 使用 Python http.server 作为开发服务器\n' +
12
+ '- 不需要 Node.js 环境,适合简单静态内容',
13
+ paramsSchema: {
14
+ type: 'object',
15
+ properties: {},
16
+ required: [],
17
+ additionalProperties: false,
18
+ },
19
+ };
20
+ // end_aigc
21
+
22
+ export default config;
@@ -43,6 +43,11 @@ src/
43
43
  ├── lib/ # 工具函数库
44
44
  │ └── utils.ts # cn() 等工具函数
45
45
  └── hooks/ # 自定义 React Hooks(可选)
46
+
47
+ server/
48
+ ├── index.ts # 自定义服务器入口
49
+ ├── tsconfig.json # Server TypeScript 配置
50
+ └── dist/ # 编译输出目录(自动生成)
46
51
  ```
47
52
 
48
53
  ## 核心开发规范
@@ -12,6 +12,11 @@ const eslintConfig = defineConfig([
12
12
  'out/**',
13
13
  'build/**',
14
14
  'next-env.d.ts',
15
+ // Build artifacts:
16
+ 'server.js',
17
+ 'dist/**',
18
+ // Script files (CommonJS):
19
+ 'scripts/**/*.js',
15
20
  ]),
16
21
  ]);
17
22
 
@@ -1,8 +1,7 @@
1
1
  import type { NextConfig } from 'next';
2
- import path from 'path';
3
2
 
4
3
  const nextConfig: NextConfig = {
5
- // outputFileTracingRoot: path.resolve(__dirname, '../../'),
4
+ // outputFileTracingRoot: path.resolve(__dirname, '../../'), // Uncomment and add 'import path from "path"' if needed
6
5
  /* config options here */
7
6
  allowedDevOrigins: ['*.dev.coze.site'],
8
7
  images: {
@@ -11,6 +11,8 @@
11
11
  "ts-check": "tsc -p tsconfig.json"
12
12
  },
13
13
  "dependencies": {
14
+ "@aws-sdk/client-s3": "^3.958.0",
15
+ "@aws-sdk/lib-storage": "^3.958.0",
14
16
  "@hookform/resolvers": "^5.2.2",
15
17
  "@radix-ui/react-accordion": "^1.2.12",
16
18
  "@radix-ui/react-alert-dialog": "^1.1.15",
@@ -38,14 +40,22 @@
38
40
  "@radix-ui/react-toggle": "^1.1.10",
39
41
  "@radix-ui/react-toggle-group": "^1.1.11",
40
42
  "@radix-ui/react-tooltip": "^1.2.8",
43
+ "@supabase/supabase-js": "2.95.3",
41
44
  "class-variance-authority": "^0.7.1",
45
+ "clsx": "^2.1.1",
42
46
  "cmdk": "^1.1.1",
43
- "coze-coding-dev-sdk": "^0.7.4",
47
+ "coze-coding-dev-sdk": "^0.7.16",
48
+ "date-fns": "^4.1.0",
49
+ "dotenv": "^17.2.3",
50
+ "drizzle-kit": "^0.31.8",
51
+ "drizzle-orm": "^0.45.1",
52
+ "drizzle-zod": "^0.8.3",
44
53
  "embla-carousel-react": "^8.6.0",
45
54
  "input-otp": "^1.4.2",
46
55
  "lucide-react": "^0.468.0",
47
56
  "next": "16.1.1",
48
57
  "next-themes": "^0.4.6",
58
+ "pg": "^8.16.3",
49
59
  "react": "19.2.3",
50
60
  "react-day-picker": "^9.13.0",
51
61
  "react-dom": "19.2.3",
@@ -60,8 +70,10 @@
60
70
  },
61
71
  "devDependencies": {
62
72
  "@react-dev-inspector/babel-plugin": "^2.0.1",
73
+ "@react-dev-inspector/middleware": "^2.0.1",
63
74
  "@tailwindcss/postcss": "^4",
64
75
  "@types/node": "^20",
76
+ "@types/pg": "^8.16.0",
65
77
  "@types/react": "^19",
66
78
  "@types/react-dom": "^19",
67
79
  "eslint": "^9",
@@ -70,15 +82,12 @@
70
82
  "react-dev-inspector": "^2.0.1",
71
83
  "shadcn": "latest",
72
84
  "tailwindcss": "^4",
85
+ "tsup": "^8.3.5",
86
+ "tsx": "^4.19.2",
73
87
  "typescript": "^5"
74
88
  },
75
89
  "packageManager": "pnpm@9.0.0",
76
90
  "engines": {
77
91
  "pnpm": ">=9.0.0"
78
- },
79
- "pnpm": {
80
- "overrides": {
81
- "esbuild": "^0.25.12"
82
- }
83
92
  }
84
93
  }