-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.78 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@pshycodr/codr",
"version": "0.1.5",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run ./apps/cli-ts/src/index.ts",
"build": "bun build ./apps/cli-ts/src/index.ts --outdir dist --target bun",
"prepare": "husky install"
},
"bin": {
"codr": "./dist/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome format --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/bun": "latest",
"@types/cheerio": "^1.0.0",
"@types/node": "^24.0.1",
"chalk": "^5.4.1",
"husky": "^8.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@google/genai": "^1.7.0",
"@inkjs/ui": "^2.0.0",
"@langchain/anthropic": "^0.3.24",
"@langchain/community": "^0.3.48",
"@langchain/core": "^0.3.62",
"@langchain/deepseek": "^0.0.2",
"@langchain/google-genai": "^0.2.10",
"@langchain/langgraph": "^0.3.0",
"@langchain/openai": "^0.5.15",
"@types/blessed": "^0.1.25",
"@types/pdf-parse": "^1.1.5",
"@types/postcss-safe-parser": "^5.0.4",
"blessed": "^0.1.81",
"boxen": "^8.0.1",
"cheerio": "^1.1.0",
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"figlet": "^1.8.2",
"gradient-string": "^3.0.0",
"i": "^0.3.7",
"ink": "^6.0.1",
"ink-text-input": "^6.0.0",
"inquirer": "^12.6.3",
"langchain": "^0.3.27",
"lint-staged": "^16.1.2",
"mammoth": "^1.9.1",
"npm": "^11.4.2",
"openai": "^5.3.0",
"ora": "^8.2.0",
"p-limit": "^6.2.0",
"pdf-parse": "^1.1.1",
"postcss": "^8.5.6",
"postcss-safe-parser": "^7.0.1",
"react": "^19.1.0",
"react-devtools-core": "^6.1.5",
"ts-morph": "^26.0.0",
"winston": "^3.17.0",
"zeromq": "^6.4.2",
"zod": "^3.25.56"
},
"engines": {
"bun": ">=1.0.0"
}
}