clebby-code 1.0.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.
- package/README.md +24 -0
- package/dist/index.js +1185 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "clebby-code",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"module": "index.ts",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"author": "dev Apurv Sheldiya",
|
|
7
|
+
"bin": {
|
|
8
|
+
"clebby-code": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "bun index.ts",
|
|
15
|
+
"doctor": "bun index.ts doctor",
|
|
16
|
+
"typecheck": "bunx tsc --noEmit",
|
|
17
|
+
"test": "bun test",
|
|
18
|
+
"check": "bun run typecheck && bun run test",
|
|
19
|
+
"build": "bun run build.ts"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/bun": "latest",
|
|
23
|
+
"@types/node": "^25.7.0"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"typescript": "^5"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@clack/core": "^1.3.0",
|
|
30
|
+
"@clack/prompts": "^1.3.0",
|
|
31
|
+
"@langchain/core": "^1.1.48",
|
|
32
|
+
"@langchain/langgraph": "^1.3.2",
|
|
33
|
+
"@langchain/openai": "^1.4.7",
|
|
34
|
+
"@mendable/firecrawl-js": "^4.23.0",
|
|
35
|
+
"@openrouter/ai-sdk-provider": "^2.9.0",
|
|
36
|
+
"@supabase/supabase-js": "^2.106.2",
|
|
37
|
+
"@types/marked-terminal": "^6.1.1",
|
|
38
|
+
"ai": "^6.0.180",
|
|
39
|
+
"chalk": "^5.6.2",
|
|
40
|
+
"commander": "^14.0.3",
|
|
41
|
+
"diff": "^9.0.0",
|
|
42
|
+
"figlet": "^1.11.0",
|
|
43
|
+
"marked": "^18.0.3",
|
|
44
|
+
"marked-terminal": "^7.3.0",
|
|
45
|
+
"playwright": "^1.60.0",
|
|
46
|
+
"telegraf": "^4.16.3"
|
|
47
|
+
}
|
|
48
|
+
}
|