@coze-arch/cli 0.0.20 → 0.0.21-alpha.df4fd6
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_build.sh +1 -13
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +0 -12
- package/lib/__templates__/expo/client/components/Screen.tsx +5 -5
- package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.types.ts +6 -6
- package/lib/__templates__/expo/client/heroui/components/toast/toast.tsx +2 -2
- package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-augmented-ref.ts +2 -2
- package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-controllable-state.ts +1 -1
- package/lib/__templates__/expo/client/package.json +1 -1
- package/lib/__templates__/expo/server/package.json +1 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +4 -4
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +4 -4
- package/lib/__templates__/pi-agent/package.json +1 -1
- package/lib/__templates__/pi-agent/tests/web-search.test.ts +2 -2
- package/lib/__templates__/taro/src/components/ui/collapsible.tsx +2 -2
- package/lib/__templates__/taro/src/components/ui/hover-card.tsx +10 -10
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +3 -2
- package/lib/__templates__/taro/src/components/ui/slider.tsx +4 -4
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +2 -1
- package/lib/__templates__/taro/src/components/ui/toast.tsx +1 -1
- package/lib/__templates__/taro/src/components/ui/tooltip.tsx +10 -10
- package/lib/__templates__/taro/src/lib/measure.ts +1 -1
- package/lib/__templates__/templates.json +24 -24
- package/lib/__templates__/vite/scripts/dev.sh +4 -4
- package/lib/__templates__/vite/server/server.ts +1 -2
- package/lib/cli.js +823 -94
- package/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coze-arch/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21-alpha.df4fd6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "coze coding devtools cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
"prebuild": "tsx scripts/prebuild.ts",
|
|
24
24
|
"build": "tsx scripts/build.ts",
|
|
25
25
|
"create": "tsx scripts/create-template.ts",
|
|
26
|
+
"knip": "knip --include files",
|
|
27
|
+
"knip:all": "knip",
|
|
26
28
|
"lint": "eslint ./ --cache",
|
|
27
29
|
"pre-release": "tsx scripts/pre-release.ts",
|
|
28
30
|
"postpublish": "bash scripts/sync-npmmirror.sh",
|
|
@@ -52,32 +54,34 @@
|
|
|
52
54
|
"@coze-arch/cli-slardar": "workspace:*",
|
|
53
55
|
"@coze-arch/eslint-config": "workspace:*",
|
|
54
56
|
"@coze-arch/fs-enhance": "workspace:*",
|
|
55
|
-
"@coze-arch/monorepo-kits": "workspace:*",
|
|
56
57
|
"@coze-arch/pack-audit": "workspace:*",
|
|
57
58
|
"@coze-arch/rollup-config": "workspace:*",
|
|
58
59
|
"@coze-arch/ts-config": "workspace:*",
|
|
59
60
|
"@coze-arch/vitest-config": "workspace:*",
|
|
60
61
|
"@coze-coding/lambda": "workspace:*",
|
|
62
|
+
"@emnapi/runtime": "^1.7.1",
|
|
61
63
|
"@inquirer/prompts": "^3.2.0",
|
|
62
64
|
"@playwright/test": "~1.55.0",
|
|
65
|
+
"@rollup/plugin-commonjs": "^28.0.2",
|
|
66
|
+
"@rollup/plugin-json": "~6.0.0",
|
|
67
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
68
|
+
"@rollup/plugin-sucrase": "^5.0.2",
|
|
63
69
|
"@slardar/rd-cli": "^0.10.3",
|
|
64
|
-
"@types/debug": "^4.1.
|
|
70
|
+
"@types/debug": "^4.1.13",
|
|
65
71
|
"@types/ejs": "^3.1.5",
|
|
66
72
|
"@types/iarna__toml": "^2.0.5",
|
|
67
73
|
"@types/js-yaml": "^4.0.9",
|
|
68
|
-
"@types/minimatch": "^5.1.2",
|
|
69
74
|
"@types/minimist": "^1.2.5",
|
|
70
75
|
"@types/node": "^24",
|
|
71
76
|
"@types/shelljs": "^0.10.0",
|
|
72
77
|
"@vitest/coverage-v8": "~4.0.18",
|
|
73
|
-
"
|
|
78
|
+
"knip": "^5.30.1",
|
|
74
79
|
"minimatch": "^10.0.1",
|
|
75
80
|
"playwright": "~1.55.0",
|
|
76
81
|
"rollup": "^4.60.1",
|
|
77
82
|
"sucrase": "^3.35.0",
|
|
78
83
|
"tree-kill": "^1.2.2",
|
|
79
84
|
"tsx": "^4.20.6",
|
|
80
|
-
"vite-tsconfig-paths": "^4.2.1",
|
|
81
85
|
"vitest": "~4.0.18"
|
|
82
86
|
},
|
|
83
87
|
"publishConfig": {
|