@quantum-ai/roo-code-cli 0.5.6

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/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@quantum-ai/roo-code-cli",
3
+ "version": "0.5.6",
4
+ "publisher": "quantum-ai",
5
+ "description": "Roo Code CLI - Run the Roo Code agent from the command line",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=20.0.0"
9
+ },
10
+ "main": "dist/index.mjs",
11
+ "bin": {
12
+ "roo": "dist/index.mjs"
13
+ },
14
+ "files": [
15
+ "dist/index.mjs",
16
+ "dist/index.mjs.map",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "dependencies": {
21
+ "@dotenvx/dotenvx": "2.1.4",
22
+ "@vscode/ripgrep": "1.15.9",
23
+ "ai-sdk-provider-poe": "2.0.18",
24
+ "cli-spinners": "2.6.0",
25
+ "commander": "12.1.0",
26
+ "fuzzysort": "0.4.0",
27
+ "ink": "4.4.1",
28
+ "p-wait-for": "2.0.1",
29
+ "react": "18.2.0",
30
+ "zod": "3.25.76",
31
+ "zustand": "4.5.0"
32
+ },
33
+ "devDependencies": {
34
+ "@eslint/js": "10.0.1",
35
+ "@types/node": "20.19.43",
36
+ "@types/react": "18.3.5",
37
+ "@types/react-dom": "18.3.0",
38
+ "@types/vscode": "1.125.0",
39
+ "esbuild": "0.25.0",
40
+ "eslint": "10.6.0",
41
+ "eslint-config-prettier": "10.1.8",
42
+ "nock": "14.0.16",
43
+ "rimraf": "6.0.1",
44
+ "tsup": "^8.1.0",
45
+ "tsx": "4.7.0",
46
+ "typescript": "5.3.3",
47
+ "typescript-eslint": "8.62.1",
48
+ "vitest": "1.6.1"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ },
53
+ "scripts": {
54
+ "format": "prettier --write 'src/**/*.ts'",
55
+ "lint": "eslint -c eslint.config.mjs src --max-warnings=0",
56
+ "check-types": "tsc --noEmit",
57
+ "test": "vitest run",
58
+ "build": "tsup --config tsup.config.ts",
59
+ "clean": "rimraf dist .turbo"
60
+ }
61
+ }