codekanban 0.1.0 → 0.3.0
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/README.md +4 -4
- package/README.zh-CN.md +4 -4
- package/package.json +34 -34
package/README.md
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
# Code Kanban
|
|
4
4
|
|
|
5
|
+
[中文](README.zh-CN.md) | [English](README.md)
|
|
6
|
+
|
|
5
7
|
An auxiliary programming tool for the AI era, helping you speed up 10x.
|
|
6
8
|
|
|
9
|
+
[Core Features](#core-features) • [Quick Start](#quick-start) • [Development Guide](#development-guide) • [About](#about)
|
|
10
|
+
|
|
7
11
|

|
|
8
12
|

|
|
9
13
|

|
|
10
14
|

|
|
11
15
|
|
|
12
|
-
[中文](README.zh-CN.md) | [English](README.md)
|
|
13
|
-
|
|
14
|
-
[Core Features](#core-features) • [Quick Start](#quick-start) • [Development Guide](#development-guide) • [About](#about)
|
|
15
|
-
|
|
16
16
|

|
|
17
17
|
|
|
18
18
|
</div>
|
package/README.zh-CN.md
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
# 代码看板 Code kanban
|
|
4
4
|
|
|
5
|
+
[中文](README.zh-CN.md) | [English](README.md)
|
|
6
|
+
|
|
5
7
|
AI时代的辅助编程工具,帮助你提速10倍。
|
|
6
8
|
|
|
9
|
+
[核心特性](#核心特性) • [快速体验](#快速体验) • [开发指南](#开发指南) • [关于](#关于)
|
|
10
|
+
|
|
7
11
|

|
|
8
12
|

|
|
9
13
|

|
|
10
14
|

|
|
11
15
|
|
|
12
|
-
[中文](README.zh-CN.md) | [English](README.md)
|
|
13
|
-
|
|
14
|
-
[核心特性](#核心特性) • [快速体验](#快速体验) • [开发指南](#开发指南) • [关于](#关于)
|
|
15
|
-
|
|
16
16
|

|
|
17
17
|
|
|
18
18
|
</div>
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "codekanban",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "An auxiliary programming tool for the AI era, helping you speed up 10x.",
|
|
5
|
-
"bin": {
|
|
6
|
-
"codekanban": "npm-bin/codekanban.js"
|
|
7
|
-
},
|
|
8
|
-
"optionalDependencies": {
|
|
9
|
-
"@codekanban/win32-x64": "0.
|
|
10
|
-
"@codekanban/darwin-x64": "0.
|
|
11
|
-
"@codekanban/darwin-arm64": "0.
|
|
12
|
-
"@codekanban/linux-x64": "0.
|
|
13
|
-
"@codekanban/linux-arm64": "0.
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"ai",
|
|
17
|
-
"coding",
|
|
18
|
-
"kanban",
|
|
19
|
-
"terminal",
|
|
20
|
-
"productivity",
|
|
21
|
-
"developer-tools",
|
|
22
|
-
"worktree",
|
|
23
|
-
"git"
|
|
24
|
-
],
|
|
25
|
-
"author": "fy0",
|
|
26
|
-
"license": "Apache-2.0",
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/fy0/CodeKanban"
|
|
30
|
-
},
|
|
31
|
-
"homepage": "https://github.com/fy0/CodeKanban#readme",
|
|
32
|
-
"engines": {
|
|
33
|
-
"node": ">=14.0.0"
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "codekanban",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "An auxiliary programming tool for the AI era, helping you speed up 10x.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"codekanban": "npm-bin/codekanban.js"
|
|
7
|
+
},
|
|
8
|
+
"optionalDependencies": {
|
|
9
|
+
"@codekanban/win32-x64": "0.3.0",
|
|
10
|
+
"@codekanban/darwin-x64": "0.3.0",
|
|
11
|
+
"@codekanban/darwin-arm64": "0.3.0",
|
|
12
|
+
"@codekanban/linux-x64": "0.3.0",
|
|
13
|
+
"@codekanban/linux-arm64": "0.3.0"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"ai",
|
|
17
|
+
"coding",
|
|
18
|
+
"kanban",
|
|
19
|
+
"terminal",
|
|
20
|
+
"productivity",
|
|
21
|
+
"developer-tools",
|
|
22
|
+
"worktree",
|
|
23
|
+
"git"
|
|
24
|
+
],
|
|
25
|
+
"author": "fy0",
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/fy0/CodeKanban"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/fy0/CodeKanban#readme",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=14.0.0"
|
|
34
|
+
}
|
|
35
35
|
}
|