shellx-cli 0.0.1
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/LICENSE +202 -0
- package/README.md +310 -0
- package/bundle/assets/shellx-linux-x86_64-1.1.9.zip +0 -0
- package/bundle/assets/shellx-macos-aarch64-1.1.9.zip +0 -0
- package/bundle/assets/shellx-macos-x86_64-1.1.9.zip +0 -0
- package/bundle/assets/shellx-win-x64-1.1.9.zip +0 -0
- package/bundle/assets/shellx-win-x86-1.1.9.zip +0 -0
- package/bundle/assets/shellx.apk +0 -0
- package/bundle/sandbox-macos-permissive-closed.sb +32 -0
- package/bundle/sandbox-macos-permissive-open.sb +25 -0
- package/bundle/sandbox-macos-permissive-proxied.sb +37 -0
- package/bundle/sandbox-macos-restrictive-closed.sb +93 -0
- package/bundle/sandbox-macos-restrictive-open.sb +96 -0
- package/bundle/sandbox-macos-restrictive-proxied.sb +98 -0
- package/bundle/shellx.js +340613 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shellx-cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"engines": {
|
|
5
|
+
"node": ">=20.0.0"
|
|
6
|
+
},
|
|
7
|
+
"type": "module",
|
|
8
|
+
"workspaces": [
|
|
9
|
+
"packages/*"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/google-gemini/gemini-cli.git"
|
|
14
|
+
},
|
|
15
|
+
"config": {
|
|
16
|
+
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.21"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"start": "node scripts/start.js",
|
|
20
|
+
"start:a2a-server": "CODER_AGENT_PORT=41242 npm run start --workspace @google/gemini-cli-a2a-server",
|
|
21
|
+
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
|
|
22
|
+
"auth:npm": "npx google-artifactregistry-auth",
|
|
23
|
+
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
|
|
24
|
+
"auth": "npm run auth:npm && npm run auth:docker",
|
|
25
|
+
"generate": "node scripts/generate-git-commit-info.js",
|
|
26
|
+
"build": "node scripts/build.js",
|
|
27
|
+
"build-and-start": "npm run build && npm run start",
|
|
28
|
+
"build:vscode": "node scripts/build_vscode_companion.js",
|
|
29
|
+
"build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
|
|
30
|
+
"build:packages": "npm run build --workspaces",
|
|
31
|
+
"build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
|
|
32
|
+
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
|
|
33
|
+
"test": "npm run test --workspaces --if-present",
|
|
34
|
+
"test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
|
|
35
|
+
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
|
|
36
|
+
"test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
|
|
37
|
+
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
38
|
+
"test:integration:sandbox:none": "GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
39
|
+
"test:integration:sandbox:docker": "GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
40
|
+
"test:integration:sandbox:podman": "GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
41
|
+
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
|
|
42
|
+
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
|
|
43
|
+
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
|
|
44
|
+
"format": "prettier --experimental-cli --write .",
|
|
45
|
+
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
46
|
+
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
47
|
+
"prepare": "npm run bundle",
|
|
48
|
+
"prepare:package": "node scripts/prepare-package.js",
|
|
49
|
+
"release:version": "node scripts/version.js",
|
|
50
|
+
"telemetry": "node scripts/telemetry.js",
|
|
51
|
+
"clean": "node scripts/clean.js"
|
|
52
|
+
},
|
|
53
|
+
"bin": {
|
|
54
|
+
"shellx": "bundle/shellx.js"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"bundle/",
|
|
58
|
+
"README.md",
|
|
59
|
+
"LICENSE"
|
|
60
|
+
],
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/marked": "^5.0.2",
|
|
63
|
+
"@types/mime-types": "^3.0.1",
|
|
64
|
+
"@types/minimatch": "^5.1.2",
|
|
65
|
+
"@types/mock-fs": "^4.13.4",
|
|
66
|
+
"@types/shell-quote": "^1.7.5",
|
|
67
|
+
"@vitest/coverage-v8": "^3.1.1",
|
|
68
|
+
"@vitest/eslint-plugin": "^1.3.4",
|
|
69
|
+
"concurrently": "^9.2.0",
|
|
70
|
+
"cross-env": "^7.0.3",
|
|
71
|
+
"esbuild": "^0.25.0",
|
|
72
|
+
"eslint": "^9.24.0",
|
|
73
|
+
"eslint-config-prettier": "^10.1.2",
|
|
74
|
+
"eslint-plugin-import": "^2.31.0",
|
|
75
|
+
"eslint-plugin-license-header": "^0.8.0",
|
|
76
|
+
"eslint-plugin-react": "^7.37.5",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
78
|
+
"glob": "^10.4.5",
|
|
79
|
+
"globals": "^16.0.0",
|
|
80
|
+
"json": "^11.0.0",
|
|
81
|
+
"lodash": "^4.17.21",
|
|
82
|
+
"memfs": "^4.17.2",
|
|
83
|
+
"mnemonist": "^0.40.3",
|
|
84
|
+
"mock-fs": "^5.5.0",
|
|
85
|
+
"msw": "^2.10.4",
|
|
86
|
+
"prettier": "^3.5.3",
|
|
87
|
+
"react-devtools-core": "^4.28.5",
|
|
88
|
+
"tsx": "^4.20.3",
|
|
89
|
+
"typescript-eslint": "^8.30.1",
|
|
90
|
+
"vitest": "^3.2.4",
|
|
91
|
+
"yargs": "^17.7.2"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"@lvce-editor/ripgrep": "^1.6.0",
|
|
95
|
+
"simple-git": "^3.28.0",
|
|
96
|
+
"strip-ansi": "^7.1.0",
|
|
97
|
+
"yauzl": "^3.2.0"
|
|
98
|
+
},
|
|
99
|
+
"optionalDependencies": {
|
|
100
|
+
"@lydell/node-pty": "1.1.0",
|
|
101
|
+
"@lydell/node-pty-darwin-arm64": "1.1.0",
|
|
102
|
+
"@lydell/node-pty-darwin-x64": "1.1.0",
|
|
103
|
+
"@lydell/node-pty-linux-x64": "1.1.0",
|
|
104
|
+
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
105
|
+
"@lydell/node-pty-win32-x64": "1.1.0",
|
|
106
|
+
"node-pty": "^1.0.0"
|
|
107
|
+
}
|
|
108
|
+
}
|