forked from RooCodeInc/Roo-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@roo-code/cli",
"version": "0.1.17",
"description": "CLI-native local/private-first coding agent",
"private": true,
"type": "module",
"main": "dist/index.js",
"bin": {
"mesa": "dist/index.js",
"roo": "dist/index.js"
},
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint src --ext .ts --max-warnings=0",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:integration": "tsx scripts/integration/run.ts",
"test:tui:smoke": "pnpm build && pnpm build:extension && python3 scripts/tui/run.py",
"test:tui:smoke:list": "python3 scripts/tui/run.py --list",
"test:noninteractive:smoke": "pnpm build && pnpm build:extension && python3 scripts/noninteractive/run.py",
"test:noninteractive:smoke:list": "python3 scripts/noninteractive/run.py --list",
"build": "tsup",
"build:extension": "pnpm --filter roo-cline bundle",
"dev": "tsx src/index.ts",
"dev:local": "OPENAI_BASE_URL=http://127.0.0.1:8080/v1 tsx src/index.ts",
"clean": "rimraf dist .turbo"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@roo-code/core": "workspace:^",
"@roo-code/types": "workspace:^",
"@roo-code/vscode-shim": "workspace:^",
"@trpc/client": "^11.8.1",
"@vscode/ripgrep": "^1.15.9",
"commander": "^12.1.0",
"cross-spawn": "^7.0.6",
"execa": "^9.5.2",
"fuzzysort": "^3.1.0",
"ignore": "^7.0.5",
"ink": "^6.6.0",
"p-wait-for": "^5.0.2",
"react": "^19.1.0",
"superjson": "^2.2.6",
"yaml": "^2.8.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@roo-code/config-eslint": "workspace:^",
"@roo-code/config-typescript": "workspace:^",
"@types/node": "^24.1.0",
"@types/react": "^19.1.6",
"ink-testing-library": "^4.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"vitest": "^3.2.3"
}
}