@kenkaiiii/ggcoder 4.3.223 → 4.3.224
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 +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +7 -7
- package/dist/cli.js.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/core/compaction/compactor.test.js +2 -2
- package/dist/core/compaction/token-estimator.test.js +1 -1
- package/dist/core/model-registry.d.ts +2 -2
- package/dist/core/model-registry.js +4 -4
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/model-registry.test.js +1 -1
- package/dist/core/model-registry.test.js.map +1 -1
- package/dist/core/settings-manager.d.ts +3 -2
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +1 -6
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/ui/components/Footer.d.ts +2 -2
- package/dist/ui/components/Footer.js +8 -8
- package/dist/ui/components/Footer.js.map +1 -1
- package/dist/ui/components/index.d.ts +3 -0
- package/dist/ui/components/index.d.ts.map +1 -1
- package/dist/ui/components/index.js +3 -0
- package/dist/ui/components/index.js.map +1 -1
- package/dist/ui/hooks/useTranscriptHistory.d.ts +30 -16
- package/dist/ui/hooks/useTranscriptHistory.d.ts.map +1 -1
- package/dist/ui/hooks/useTranscriptHistory.js +13 -15
- package/dist/ui/hooks/useTranscriptHistory.js.map +1 -1
- package/dist/ui/login.js +1 -1
- package/dist/ui/thinking-level-cycle.test.js +23 -3
- package/dist/ui/thinking-level-cycle.test.js.map +1 -1
- package/dist/ui/thinking-level.d.ts.map +1 -1
- package/dist/ui/thinking-level.js +30 -1
- package/dist/ui/thinking-level.js.map +1 -1
- package/dist/ui/transcript/spacing.d.ts +31 -19
- package/dist/ui/transcript/spacing.d.ts.map +1 -1
- package/dist/ui/transcript/spacing.js +7 -3
- package/dist/ui/transcript/spacing.js.map +1 -1
- package/package.json +24 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenkaiiii/ggcoder",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.224",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI coding agent with OAuth authentication for Anthropic, OpenAI, and Gemini",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,6 +41,26 @@
|
|
|
41
41
|
"import": "./dist/ui/hooks/useDoublePress.js",
|
|
42
42
|
"types": "./dist/ui/hooks/useDoublePress.d.ts"
|
|
43
43
|
},
|
|
44
|
+
"./ui/hooks/transcript-history": {
|
|
45
|
+
"import": "./dist/ui/hooks/useTranscriptHistory.js",
|
|
46
|
+
"types": "./dist/ui/hooks/useTranscriptHistory.d.ts"
|
|
47
|
+
},
|
|
48
|
+
"./ui/transcript/spacing": {
|
|
49
|
+
"import": "./dist/ui/transcript/spacing.js",
|
|
50
|
+
"types": "./dist/ui/transcript/spacing.d.ts"
|
|
51
|
+
},
|
|
52
|
+
"./ui/transcript/frame": {
|
|
53
|
+
"import": "./dist/ui/transcript/TranscriptItemFrame.js",
|
|
54
|
+
"types": "./dist/ui/transcript/TranscriptItemFrame.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./ui/terminal-history": {
|
|
57
|
+
"import": "./dist/ui/terminal-history.js",
|
|
58
|
+
"types": "./dist/ui/terminal-history.d.ts"
|
|
59
|
+
},
|
|
60
|
+
"./ui/terminal-history-format": {
|
|
61
|
+
"import": "./dist/ui/terminal-history-format.js",
|
|
62
|
+
"types": "./dist/ui/terminal-history-format.d.ts"
|
|
63
|
+
},
|
|
44
64
|
"./ui/login": {
|
|
45
65
|
"import": "./dist/ui/login.js",
|
|
46
66
|
"types": "./dist/ui/login.d.ts"
|
|
@@ -82,9 +102,9 @@
|
|
|
82
102
|
"strip-ansi": "^7.2.0",
|
|
83
103
|
"wrap-ansi": "^10.0.0",
|
|
84
104
|
"zod": "^4.4.3",
|
|
85
|
-
"@kenkaiiii/gg-agent": "4.3.
|
|
86
|
-
"@kenkaiiii/gg-
|
|
87
|
-
"@kenkaiiii/gg-
|
|
105
|
+
"@kenkaiiii/gg-agent": "4.3.224",
|
|
106
|
+
"@kenkaiiii/gg-pixel": "4.3.100",
|
|
107
|
+
"@kenkaiiii/gg-ai": "4.3.224"
|
|
88
108
|
},
|
|
89
109
|
"optionalDependencies": {
|
|
90
110
|
"@huggingface/transformers": "^3.6.0",
|