@voxcode-dev/voxcode 0.1.1 → 0.1.2
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/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/dist/modes/interactive/components/tool-execution.js +1 -1
- package/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +2 -3
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +4 -38
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/rpc-extension-ui.ts +9 -1
- package/npm-shrinkwrap.json +4 -3
- package/package.json +5 -4
|
@@ -18,7 +18,15 @@ import { spawn } from "node:child_process";
|
|
|
18
18
|
import { dirname, join } from "node:path";
|
|
19
19
|
import * as readline from "node:readline";
|
|
20
20
|
import { fileURLToPath } from "node:url";
|
|
21
|
-
import {
|
|
21
|
+
import {
|
|
22
|
+
type Component,
|
|
23
|
+
Container,
|
|
24
|
+
Input,
|
|
25
|
+
matchesKey,
|
|
26
|
+
ProcessTerminal,
|
|
27
|
+
SelectList,
|
|
28
|
+
TUI,
|
|
29
|
+
} from "@voxcode-dev/voxcode-tui";
|
|
22
30
|
|
|
23
31
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
24
32
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxcode-dev/voxcode",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@voxcode-dev/voxcode",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@voxcode-dev/voxcode-agent": "^0.75.5",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"@mariozechner/clipboard": "0.3.6"
|
|
32
32
|
},
|
|
33
33
|
"bin": {
|
|
34
|
-
"vox": "dist/cli.js"
|
|
34
|
+
"vox": "dist/cli.js",
|
|
35
|
+
"voxcode": "dist/cli.js"
|
|
35
36
|
},
|
|
36
37
|
"engines": {
|
|
37
38
|
"node": ">=22.19.0"
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxcode-dev/voxcode",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "AI-powered coding agent for terminal-first development workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"voxcodeConfig": {
|
|
7
7
|
"configDir": ".voxcode"
|
|
8
8
|
},
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
"bin": {
|
|
10
|
+
"vox": "dist/cli.js",
|
|
11
|
+
"voxcode": "dist/cli.js"
|
|
12
|
+
},
|
|
12
13
|
"main": "./dist/index.js",
|
|
13
14
|
"types": "./dist/index.d.ts",
|
|
14
15
|
"exports": {
|