Files
claude-code/package.json
2026-04-02 15:19:28 +03:00

121 lines
3.3 KiB
JSON

{
"name": "claude-code",
"version": "0.1.0-alpha",
"description": "Claude Code is a CLI that helps you code with Claude.",
"type": "module",
"main": "main.tsx",
"bin": {
"claude": "bin/claude.js"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"scripts": {
"dev": "bun run main.tsx",
"build": "bun build ./main.tsx --outdir ./dist --target node",
"test": "bun test",
"lint": "biome check .",
"format": "biome format --write ."
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.27.0",
"@anthropic-ai/foundry-sdk": "^0.2.3",
"@anthropic-ai/sdk": "^0.82.0",
"@anthropic-ai/vertex-sdk": "^0.14.4",
"@azure/identity": "^4.5.0",
"@commander-js/extra-typings": "^12.0.1",
"@inquirer/prompts": "^5.0.7",
"bidi-js": "^1.0.3",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"code-excerpt": "^4.0.0",
"color-diff": "^1.4.0",
"color-diff-napi": "^0.0.1",
"commander": "^12.1.0",
"date-fns": "^3.6.0",
"diff": "^8.0.4",
"emoji-regex": "^10.3.0",
"execa": "^9.1.0",
"figures": "^6.1.0",
"fuse.js": "^7.0.0",
"get-east-asian-width": "^1.2.0",
"glob": "^13.0.6",
"google-auth-library": "^9.9.0",
"highlight.js": "^11.9.0",
"https-proxy-agent": "^7.0.4",
"ignore": "^5.3.1",
"indent-string": "^5.0.0",
"ink": "^4.4.1",
"lodash-es": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lru-cache": "^10.2.2",
"marked": "^12.0.1",
"modifiers-napi": "^0.0.1",
"nanoid": "^5.1.7",
"npm-run-path": "^5.3.0",
"onetime": "^7.0.0",
"open": "^10.1.0",
"p-map": "^7.0.2",
"parse-ms": "^4.0.0",
"patch-console": "^2.0.0",
"path-expression-matcher": "^1.0.0",
"path-key": "^4.0.0",
"picomatch": "^4.0.2",
"pngjs": "^7.0.0",
"pretty-ms": "^9.0.0",
"proper-lockfile": "^4.1.2",
"qrcode": "^1.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-reconciler": "^0.31.0",
"require-directory": "^2.1.1",
"restore-cursor": "^5.1.0",
"run-applescript": "^7.0.0",
"semver": "^7.6.0",
"sharp": "^0.34.5",
"shell-quote": "^1.8.1",
"signal-exit": "^4.1.0",
"slice-ansi": "^7.1.0",
"stack-utils": "^2.0.6",
"stream-json": "^1.8.0",
"streaming-json-stringify": "^3.1.0",
"string-width": "^7.1.0",
"strip-ansi": "^7.1.0",
"strip-final-newline": "^4.0.0",
"supports-hyperlinks": "^3.0.0",
"tree-kill": "^1.2.2",
"type-fest": "^4.18.2",
"undici": "^6.13.0",
"unicorn-magic": "^0.1.0",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.1",
"whatwg-url": "^14.0.0",
"widest-line": "^5.0.0",
"winston": "^3.13.0",
"wrap-ansi": "^9.0.0",
"ws": "^8.16.0",
"wsl-utils": "^0.4.0",
"xss": "^1.0.15",
"xterm": "^5.3.0",
"y18n": "^5.0.8",
"yargs-parser": "^21.1.1",
"yoctocolors": "^2.0.2",
"yoga-wasm-web": "^0.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.4.5",
"@biomejs/biome": "1.7.3",
"bun-types": "latest",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/node": "^20.12.7",
"@types/lodash-es": "^4.17.12",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode": "^1.5.5",
"@types/semver": "^7.5.8",
"@types/shell-quote": "^1.7.5"
}
}