claude-code-sandbox/package.json
Onur Solmaz 15c1b97c48
Some checks failed
Build and Test / build (18.x) (push) Has been cancelled
Build and Test / build (20.x) (push) Has been cancelled
Build and Test / build (22.x) (push) Has been cancelled
Fix fs-extra related build error (#13)
* Fix fs-extra related build error

* Checkpoint
2025-06-12 17:09:52 +02:00

82 lines
2.3 KiB
JSON

{
"name": "@textcortex/claude-code-sandbox",
"version": "0.1.0",
"description": "Run Claude Code as an autonomous agent in Docker containers with git integration",
"main": "dist/index.js",
"bin": {
"claude-sandbox": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"test:e2e": "cd test/e2e && ./run-tests.sh",
"test:coverage": "jest --coverage",
"purge-containers": "docker ps -a --filter \"ancestor=claude-code-sandbox:latest\" -q | xargs -r docker rm -f && docker rmi claude-code-sandbox:latest"
},
"keywords": [
"claude",
"ai",
"docker",
"sandbox",
"automation"
],
"author": "TextCortex Dev Team",
"license": "MIT",
"homepage": "https://github.com/textcortex/claude-code-sandbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/textcortex/claude-code-sandbox.git"
},
"bugs": {
"url": "https://github.com/textcortex/claude-code-sandbox/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/express": "^5.0.2",
"@types/ws": "^8.18.1",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"dockerode": "^4.0.2",
"express": "^5.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^8.2.6",
"open": "^10.1.2",
"ora": "^5.4.1",
"simple-git": "^3.22.0",
"socket.io": "^4.8.1",
"tar-stream": "^3.1.7",
"ws": "^8.18.2",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
},
"devDependencies": {
"@types/dockerode": "^3.3.23",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.5",
"@types/puppeteer": "^5.4.7",
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"puppeteer": "^24.9.0",
"socket.io-client": "^4.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}