clack-kit 0.0.1-beta.1 → 0.0.1

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 (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +6 -1
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # clack-kit
2
2
 
3
+ > [!WARNING]
4
+ > Powered by AI and reviewed by humans
5
+ >
6
+ > 这个库由 AI 生成,虽然已经过人类审查,但仍可能存在错误或不完善的地方。请在使用前仔细阅读文档,并根据需要进行测试和验证
7
+
3
8
  `clack-kit` 是一个面向终端 workflow 的 TypeScript ESM 库
4
9
 
5
10
  默认就是轻量模式,适合快速搭终端交互流程
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clack-kit",
3
3
  "type": "module",
4
- "version": "0.0.1-beta.1",
4
+ "version": "0.0.1",
5
5
  "description": "面向终端工作流的 TypeScript 引擎,提供交互、历史、日志与命令步骤",
6
6
  "sideEffects": false,
7
7
  "packageManager": "bun@1.3.11",
@@ -21,6 +21,11 @@
21
21
  "engines": {
22
22
  "node": ">=20"
23
23
  },
24
+ "homepage": "https://github.com/aliuq/clack-kit",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/aliuq/clack-kit.git"
28
+ },
24
29
  "scripts": {
25
30
  "build": "tsdown",
26
31
  "dev": "tsdown --watch",