cyberneurova-cli 0.19.0 → 0.20.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/dist/main.mjs +346 -338
- package/package.json +108 -108
package/package.json
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cyberneurova-cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The CyberNeurova terminal AI coding agent",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "CyberNeurova",
|
|
7
|
-
"homepage": "https://cyberneurova.ai",
|
|
8
|
-
"bugs": {
|
|
9
|
-
"url": "https://cyberneurova.com/support"
|
|
10
|
-
},
|
|
11
|
-
"keywords": [
|
|
12
|
-
"cyberneurova",
|
|
13
|
-
"neurova",
|
|
14
|
-
"cli",
|
|
15
|
-
"agent",
|
|
16
|
-
"coding-agent",
|
|
17
|
-
"ai",
|
|
18
|
-
"tui"
|
|
19
|
-
],
|
|
20
|
-
"bin": {
|
|
21
|
-
"cyberneurova": "dist/main.mjs",
|
|
22
|
-
"neurova": "dist/main.mjs"
|
|
23
|
-
},
|
|
24
|
-
"files": [
|
|
25
|
-
"dist",
|
|
26
|
-
"dist-web",
|
|
27
|
-
"README.md"
|
|
28
|
-
],
|
|
29
|
-
"type": "module",
|
|
30
|
-
"imports": {
|
|
31
|
-
"#/tui/theme": "./src/tui/theme/index.ts",
|
|
32
|
-
"#/cli/sub/server": "./src/cli/sub/server/index.ts",
|
|
33
|
-
"#/cli/sub/server/*": "./src/cli/sub/server/*.ts",
|
|
34
|
-
"#/*": [
|
|
35
|
-
"./src/*.ts",
|
|
36
|
-
"./src/*/index.ts",
|
|
37
|
-
"./src/*.d.ts"
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
|
-
"publishConfig": {
|
|
41
|
-
"access": "public",
|
|
42
|
-
"provenance": true
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"build": "pnpm -C ../neurova-web run build && tsdown && node scripts/copy-web-assets.mjs",
|
|
46
|
-
"prebuild": "node scripts/build-vis-asset.mjs",
|
|
47
|
-
"catalog:update": "node scripts/update-catalog.mjs --out dist/built-in-catalog.json",
|
|
48
|
-
"smoke": "node scripts/smoke.mjs",
|
|
49
|
-
"build:native:js": "node scripts/native/01-bundle.mjs",
|
|
50
|
-
"build:native:sea": "node scripts/native/build.mjs --profile=local",
|
|
51
|
-
"build:native:release": "node scripts/native/build.mjs --profile=release",
|
|
52
|
-
"package:native": "node scripts/native/package.mjs",
|
|
53
|
-
"produce:native:manifest": "node scripts/native/produce-manifest.mjs",
|
|
54
|
-
"release:native:resolve": "node scripts/native/resolve-release.mjs",
|
|
55
|
-
"test:native:smoke": "node scripts/native/smoke.mjs",
|
|
56
|
-
"dev": "node scripts/dev.mjs",
|
|
57
|
-
"dev:cli-only": "tsx --import ../../build/register-raw-text-loader.mjs ./src/main.ts",
|
|
58
|
-
"dev:server": "tsx --tsconfig ./tsconfig.dev.json --import ../../build/register-raw-text-loader.mjs ./src/main.ts server run --foreground",
|
|
59
|
-
"dev:server:restart": "node scripts/dev-server-restart.mjs",
|
|
60
|
-
"dev:plugin-marketplace": "node scripts/dev-plugin-marketplace-server.mjs",
|
|
61
|
-
"build:plugin-marketplace": "node scripts/build-plugin-marketplace-cdn.mjs",
|
|
62
|
-
"dev:prod": "node dist/main.mjs",
|
|
63
|
-
"clean": "rm -rf dist",
|
|
64
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
65
|
-
"test": "pnpm -w run build:packages && vitest run",
|
|
66
|
-
"e2e": "pnpm -w run build:packages && CYBERNEUROVA_E2E=1 vitest run test/e2e",
|
|
67
|
-
"e2e:real": "pnpm -w run build:packages && CYBERNEUROVA_E2E_REAL=1 vitest run test/e2e/real-llm-smoke.e2e.test.ts"
|
|
68
|
-
},
|
|
69
|
-
"optionalDependencies": {
|
|
70
|
-
"@mariozechner/clipboard": "^0.3.2",
|
|
71
|
-
"chalk": "^5.4.1",
|
|
72
|
-
"cli-highlight": "^2.1.11",
|
|
73
|
-
"commander": "^13.1.0",
|
|
74
|
-
"koffi": "^2.16.0",
|
|
75
|
-
"node-pty": "^1.1.0",
|
|
76
|
-
"pathe": "^2.0.3",
|
|
77
|
-
"pino-pretty": "^13.0.0",
|
|
78
|
-
"semver": "^7.7.4",
|
|
79
|
-
"smol-toml": "^1.6.1",
|
|
80
|
-
"zod": "^4.3.6"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@earendil-works/pi-tui": "^0.74.0",
|
|
84
|
-
"@cyberneurova/acp-adapter": "workspace:^",
|
|
85
|
-
"@cyberneurova/oauth": "workspace:^",
|
|
86
|
-
"@cyberneurova/sdk": "workspace:^",
|
|
87
|
-
"@cyberneurova/telemetry": "workspace:^",
|
|
88
|
-
"@cyberneurova/web": "workspace:^",
|
|
89
|
-
"@cyberneurova/server": "workspace:^",
|
|
90
|
-
"@cyberneurova/vis-server": "workspace:^",
|
|
91
|
-
"@cyberneurova/vis-web": "workspace:*",
|
|
92
|
-
"@types/semver": "^7.7.0",
|
|
93
|
-
"@types/yazl": "^2.4.6",
|
|
94
|
-
"chalk": "^5.4.1",
|
|
95
|
-
"cli-highlight": "^2.1.11",
|
|
96
|
-
"commander": "^13.1.0",
|
|
97
|
-
"pathe": "^2.0.3",
|
|
98
|
-
"postject": "1.0.0-alpha.6",
|
|
99
|
-
"semver": "^7.7.4",
|
|
100
|
-
"smol-toml": "^1.6.1",
|
|
101
|
-
"tsx": "^4.21.0",
|
|
102
|
-
"yazl": "^3.3.1",
|
|
103
|
-
"zod": "^4.3.6"
|
|
104
|
-
},
|
|
105
|
-
"engines": {
|
|
106
|
-
"node": ">=22.19.0"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "cyberneurova-cli",
|
|
3
|
+
"version": "0.20.0",
|
|
4
|
+
"description": "The CyberNeurova terminal AI coding agent",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "CyberNeurova",
|
|
7
|
+
"homepage": "https://cyberneurova.ai",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://cyberneurova.com/support"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"cyberneurova",
|
|
13
|
+
"neurova",
|
|
14
|
+
"cli",
|
|
15
|
+
"agent",
|
|
16
|
+
"coding-agent",
|
|
17
|
+
"ai",
|
|
18
|
+
"tui"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"cyberneurova": "dist/main.mjs",
|
|
22
|
+
"neurova": "dist/main.mjs"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"dist-web",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"imports": {
|
|
31
|
+
"#/tui/theme": "./src/tui/theme/index.ts",
|
|
32
|
+
"#/cli/sub/server": "./src/cli/sub/server/index.ts",
|
|
33
|
+
"#/cli/sub/server/*": "./src/cli/sub/server/*.ts",
|
|
34
|
+
"#/*": [
|
|
35
|
+
"./src/*.ts",
|
|
36
|
+
"./src/*/index.ts",
|
|
37
|
+
"./src/*.d.ts"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public",
|
|
42
|
+
"provenance": true
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "pnpm -C ../neurova-web run build && tsdown && node scripts/copy-web-assets.mjs",
|
|
46
|
+
"prebuild": "node scripts/build-vis-asset.mjs",
|
|
47
|
+
"catalog:update": "node scripts/update-catalog.mjs --out dist/built-in-catalog.json",
|
|
48
|
+
"smoke": "node scripts/smoke.mjs",
|
|
49
|
+
"build:native:js": "node scripts/native/01-bundle.mjs",
|
|
50
|
+
"build:native:sea": "node scripts/native/build.mjs --profile=local",
|
|
51
|
+
"build:native:release": "node scripts/native/build.mjs --profile=release",
|
|
52
|
+
"package:native": "node scripts/native/package.mjs",
|
|
53
|
+
"produce:native:manifest": "node scripts/native/produce-manifest.mjs",
|
|
54
|
+
"release:native:resolve": "node scripts/native/resolve-release.mjs",
|
|
55
|
+
"test:native:smoke": "node scripts/native/smoke.mjs",
|
|
56
|
+
"dev": "node scripts/dev.mjs",
|
|
57
|
+
"dev:cli-only": "tsx --import ../../build/register-raw-text-loader.mjs ./src/main.ts",
|
|
58
|
+
"dev:server": "tsx --tsconfig ./tsconfig.dev.json --import ../../build/register-raw-text-loader.mjs ./src/main.ts server run --foreground",
|
|
59
|
+
"dev:server:restart": "node scripts/dev-server-restart.mjs",
|
|
60
|
+
"dev:plugin-marketplace": "node scripts/dev-plugin-marketplace-server.mjs",
|
|
61
|
+
"build:plugin-marketplace": "node scripts/build-plugin-marketplace-cdn.mjs",
|
|
62
|
+
"dev:prod": "node dist/main.mjs",
|
|
63
|
+
"clean": "rm -rf dist",
|
|
64
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
65
|
+
"test": "pnpm -w run build:packages && vitest run",
|
|
66
|
+
"e2e": "pnpm -w run build:packages && CYBERNEUROVA_E2E=1 vitest run test/e2e",
|
|
67
|
+
"e2e:real": "pnpm -w run build:packages && CYBERNEUROVA_E2E_REAL=1 vitest run test/e2e/real-llm-smoke.e2e.test.ts"
|
|
68
|
+
},
|
|
69
|
+
"optionalDependencies": {
|
|
70
|
+
"@mariozechner/clipboard": "^0.3.2",
|
|
71
|
+
"chalk": "^5.4.1",
|
|
72
|
+
"cli-highlight": "^2.1.11",
|
|
73
|
+
"commander": "^13.1.0",
|
|
74
|
+
"koffi": "^2.16.0",
|
|
75
|
+
"node-pty": "^1.1.0",
|
|
76
|
+
"pathe": "^2.0.3",
|
|
77
|
+
"pino-pretty": "^13.0.0",
|
|
78
|
+
"semver": "^7.7.4",
|
|
79
|
+
"smol-toml": "^1.6.1",
|
|
80
|
+
"zod": "^4.3.6"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@earendil-works/pi-tui": "^0.74.0",
|
|
84
|
+
"@cyberneurova/acp-adapter": "workspace:^",
|
|
85
|
+
"@cyberneurova/oauth": "workspace:^",
|
|
86
|
+
"@cyberneurova/sdk": "workspace:^",
|
|
87
|
+
"@cyberneurova/telemetry": "workspace:^",
|
|
88
|
+
"@cyberneurova/web": "workspace:^",
|
|
89
|
+
"@cyberneurova/server": "workspace:^",
|
|
90
|
+
"@cyberneurova/vis-server": "workspace:^",
|
|
91
|
+
"@cyberneurova/vis-web": "workspace:*",
|
|
92
|
+
"@types/semver": "^7.7.0",
|
|
93
|
+
"@types/yazl": "^2.4.6",
|
|
94
|
+
"chalk": "^5.4.1",
|
|
95
|
+
"cli-highlight": "^2.1.11",
|
|
96
|
+
"commander": "^13.1.0",
|
|
97
|
+
"pathe": "^2.0.3",
|
|
98
|
+
"postject": "1.0.0-alpha.6",
|
|
99
|
+
"semver": "^7.7.4",
|
|
100
|
+
"smol-toml": "^1.6.1",
|
|
101
|
+
"tsx": "^4.21.0",
|
|
102
|
+
"yazl": "^3.3.1",
|
|
103
|
+
"zod": "^4.3.6"
|
|
104
|
+
},
|
|
105
|
+
"engines": {
|
|
106
|
+
"node": ">=22.19.0"
|
|
107
|
+
}
|
|
108
|
+
}
|