@rely-ai/caliber 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +134 -0
  3. package/dist/bin.js +5213 -0
  4. package/package.json +69 -0
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@rely-ai/caliber",
3
+ "version": "0.1.0",
4
+ "description": "Open-source CLI for configuring coding agent environments (CLAUDE.md, .cursorrules, skills). Bring your own LLM.",
5
+ "type": "module",
6
+ "bin": {
7
+ "caliber": "./dist/bin.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup",
11
+ "dev": "tsup --watch",
12
+ "test": "vitest run",
13
+ "test:watch": "vitest",
14
+ "test:coverage": "vitest run --coverage"
15
+ },
16
+ "dependencies": {
17
+ "@anthropic-ai/sdk": "^0.39.0",
18
+ "@anthropic-ai/vertex-sdk": "^0.7.0",
19
+ "@inquirer/confirm": "^6.0.8",
20
+ "@inquirer/select": "^5.1.0",
21
+ "chalk": "^5.4.0",
22
+ "commander": "^13.0.0",
23
+ "diff": "^8.0.3",
24
+ "glob": "^11.0.0",
25
+ "google-auth-library": "^9.0.0",
26
+ "openai": "^4.0.0",
27
+ "ora": "^8.1.0"
28
+ },
29
+ "files": [
30
+ "dist/**/*.js",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
34
+ "license": "MIT",
35
+ "author": "Caliber AI",
36
+ "keywords": [
37
+ "caliber",
38
+ "cli",
39
+ "coding-agent",
40
+ "claude",
41
+ "claude-code",
42
+ "cursor",
43
+ "ai",
44
+ "developer-tools",
45
+ "claude-md",
46
+ "cursorrules",
47
+ "open-source"
48
+ ],
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/rely-ai-org/caliber.git"
55
+ },
56
+ "bugs": {
57
+ "url": "https://github.com/rely-ai-org/caliber/issues"
58
+ },
59
+ "homepage": "https://github.com/rely-ai-org/caliber#readme",
60
+ "devDependencies": {
61
+ "@types/diff": "^7.0.2",
62
+ "@types/node": "^22.0.0",
63
+ "@vitest/coverage-v8": "^4.0.18",
64
+ "memfs": "^4.56.10",
65
+ "tsup": "^8.3.0",
66
+ "typescript": "^5.7.0",
67
+ "vitest": "^4.0.18"
68
+ }
69
+ }