mirror of
https://github.com/cline/cline.git
synced 2026-09-15 21:04:27 +08:00
Better documentation in shared/net Better docs, wire up when running standalone. Use esbuild to statically decide which proxying we are doing. Add the changeset. Add the ability to mock this fetch.
69 lines
1.2 KiB
JSON
69 lines
1.2 KiB
JSON
{
|
|
"name": "cline",
|
|
"version": "1.0.3",
|
|
"description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
|
|
"main": "cline-core.js",
|
|
"bin": {
|
|
"cline": "./bin/cline",
|
|
"cline-host": "./bin/cline-host"
|
|
},
|
|
"man": "./man/cline.1",
|
|
"scripts": {
|
|
"postinstall": "node postinstall.js"
|
|
},
|
|
"bundleDependencies": [
|
|
"@grpc/grpc-js",
|
|
"@grpc/reflection",
|
|
"better-sqlite3",
|
|
"grpc-health-check",
|
|
"open",
|
|
"vscode-uri"
|
|
],
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"keywords": [
|
|
"cline",
|
|
"claude",
|
|
"dev",
|
|
"mcp",
|
|
"openrouter",
|
|
"coding",
|
|
"agent",
|
|
"autonomous",
|
|
"chatgpt",
|
|
"sonnet",
|
|
"ai",
|
|
"llama",
|
|
"cli"
|
|
],
|
|
"author": {
|
|
"name": "Cline Bot Inc."
|
|
},
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cline/cline"
|
|
},
|
|
"homepage": "https://cline.bot",
|
|
"bugs": {
|
|
"url": "https://github.com/cline/cline/issues"
|
|
},
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.13.3",
|
|
"@grpc/reflection": "^1.0.4",
|
|
"better-sqlite3": "^12.2.0",
|
|
"grpc-health-check": "^2.0.2",
|
|
"open": "^10.1.2",
|
|
"vscode-uri": "^3.1.0"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|