shellx-cli 0.0.16 → 0.0.18
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 +8 -8
- package/bundle/shellx +453679 -0
- package/bundle/shellx.js +926 -795
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shellx-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
],
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/10cl/shellx
|
|
13
|
+
"url": "git+https://github.com/10cl/shellx.git"
|
|
14
14
|
},
|
|
15
15
|
"config": {
|
|
16
16
|
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.15.0-nightly.20251107.b8eeb553"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"postinstall": "
|
|
19
|
+
"postinstall": "node scripts/install-shellx-files.js",
|
|
20
20
|
"start": "cross-env NODE_ENV=development node scripts/start.js",
|
|
21
21
|
"start:a2a-server": "CODER_AGENT_PORT=41242 npm run start --workspace @google/gemini-cli-a2a-server",
|
|
22
22
|
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"build-and-start": "npm run build && npm run start",
|
|
35
35
|
"build:vscode": "node scripts/build_vscode_companion.js",
|
|
36
36
|
"build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
|
|
37
|
-
"build:packages": "npm run build --workspace shellx-ai && npm run build --workspace @google/gemini-cli-core && npm run build --workspaces",
|
|
37
|
+
"build:packages": "npm run build --workspace shellx-ai && npm run build --workspace @shellx/shellx-cli-phone-agent && npm run build --workspace @google/gemini-cli-core && npm run build --workspaces",
|
|
38
38
|
"bundle-start": "npm run build:packages && npm run bundle && node bundle/shellx.js -d",
|
|
39
39
|
"bundle-build": "npm run build:packages && npm run bundle",
|
|
40
40
|
"build:sandbox": "node scripts/build_sandbox.js",
|
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
"eval": "^0.1.8",
|
|
125
125
|
"latest-version": "^9.0.0",
|
|
126
126
|
"shellx-files-arm64": "^0.0.2",
|
|
127
|
+
"shellx-platform-tools": "^0.0.16",
|
|
127
128
|
"simple-git": "^3.28.0"
|
|
128
129
|
},
|
|
129
130
|
"optionalDependencies": {
|