@neurocode-ai/tui 1.18.8 → 1.18.12
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/package.json +72 -72
package/package.json
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "@neurocode-ai/tui",
|
|
4
|
+
"version": "1.18.12",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "bun test --timeout 30000 --only-failures",
|
|
9
|
+
"typecheck": "tsgo --noEmit"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./src/index.tsx",
|
|
13
|
+
"./builtins": "./src/feature-plugins/builtins.ts",
|
|
14
|
+
"./config": "./src/config/index.tsx",
|
|
15
|
+
"./context/args": "./src/context/args.tsx",
|
|
16
|
+
"./context/epilogue": "./src/context/epilogue.tsx",
|
|
17
|
+
"./context/exit": "./src/context/exit.tsx",
|
|
18
|
+
"./context/kv": "./src/context/kv.tsx",
|
|
19
|
+
"./context/project": "./src/context/project.tsx",
|
|
20
|
+
"./context/runtime": "./src/context/runtime.tsx",
|
|
21
|
+
"./context/sdk": "./src/context/sdk.tsx",
|
|
22
|
+
"./context/sync": "./src/context/sync.tsx",
|
|
23
|
+
"./context/theme": "./src/context/theme.tsx",
|
|
24
|
+
"./context/editor": "./src/context/editor.ts",
|
|
25
|
+
"./context/clipboard": "./src/context/clipboard.tsx",
|
|
26
|
+
"./attention": "./src/attention.ts",
|
|
27
|
+
"./editor": "./src/editor.ts",
|
|
28
|
+
"./editor-zed": "./src/editor-zed.ts",
|
|
29
|
+
"./runtime": "./src/runtime.tsx",
|
|
30
|
+
"./terminal-win32": "./src/terminal-win32.ts",
|
|
31
|
+
"./config/keybind": "./src/config/keybind.ts",
|
|
32
|
+
"./keymap": "./src/keymap.tsx",
|
|
33
|
+
"./prompt/display": "./src/prompt/display.ts",
|
|
34
|
+
"./plugin/runtime": "./src/plugin/runtime.tsx",
|
|
35
|
+
"./plugin/slots": "./src/plugin/slots.tsx",
|
|
36
|
+
"./plugin/command-shim": "./src/plugin/command-shim.ts",
|
|
37
|
+
"./parsers-config": "./src/parsers-config.ts",
|
|
38
|
+
"./util/error": "./src/util/error.ts",
|
|
39
|
+
"./util/locale": "./src/util/locale.ts",
|
|
40
|
+
"./util/persistence": "./src/util/persistence.ts",
|
|
41
|
+
"./util/record": "./src/util/record.ts",
|
|
42
|
+
"./logo": "./src/logo.ts",
|
|
43
|
+
"./ui/dialog": "./src/ui/dialog.tsx",
|
|
44
|
+
"./ui/spinner": "./src/ui/spinner.ts",
|
|
45
|
+
"./ui/toast": "./src/ui/toast.tsx",
|
|
46
|
+
"./component/spinner": "./src/component/spinner.tsx",
|
|
47
|
+
"./component/register-spinner": "./src/component/register-spinner.ts"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@neurocode-ai/core": "1.18.8",
|
|
51
|
+
"@neurocode-ai/plugin": "1.18.8",
|
|
52
|
+
"@neurocode-ai/sdk": "1.18.8",
|
|
53
|
+
"@neurocode-ai/ui": "1.18.8",
|
|
54
|
+
"@opentui/core": "0.4.5",
|
|
55
|
+
"@opentui/keymap": "0.4.5",
|
|
56
|
+
"@opentui/solid": "0.4.5",
|
|
57
|
+
"clipboardy": "4.0.0",
|
|
58
|
+
"diff": "8.0.2",
|
|
59
|
+
"effect": "4.0.0-beta.83",
|
|
60
|
+
"fuzzysort": "3.1.0",
|
|
61
|
+
"open": "10.1.2",
|
|
62
|
+
"opentui-spinner": "0.0.7",
|
|
63
|
+
"remeda": "2.26.0",
|
|
64
|
+
"strip-ansi": "7.1.2",
|
|
65
|
+
"solid-js": "1.9.10"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@tsconfig/bun": "1.0.9",
|
|
69
|
+
"@types/bun": "1.3.13",
|
|
70
|
+
"@typescript/native-preview": "7.0.0-dev.20251207.1"
|
|
71
|
+
}
|
|
72
|
+
}
|