-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 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
{
"name": "@codellm/cli",
"version": "0.0.1",
"description": "cli interface for code-llm",
"author": "bo@interrobang.consulting",
"license": "MIT",
"type": "module",
"scripts": {
"build": "run-s build:ts build:ts-alias",
"build:ts": "tsc",
"build:ts-alias": "tsc-alias -p tsconfig.json",
"start": "node -r tsconfig-paths/register ./dist/bin/codellm-cli",
"start:import": "node -r tsconfig-paths/register ./dist/bin/codellm-cli import"
},
"dependencies": {
"@codellm/core": "^0.0.1",
"@codellm/provider-anthropic": "^0.0.1",
"@codellm/provider-langchain": "^0.0.1",
"@codellm/provider-mistral": "^0.0.1",
"@codellm/provider-ollama": "^0.0.1",
"@codellm/provider-openai": "^0.0.1",
"@codellm/tool-code-summary-query": "^0.0.1",
"@codellm/tool-file-reader": "^0.0.1",
"@codellm/tool-js-dependency-tree": "^0.0.1",
"@codellm/tool-project-glob": "^0.0.1",
"@codellm/vectordb-chromadb": "^0.0.1",
"@langchain/openai": "^0.0.15",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"readline": "^1.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/yargs": "^17.0.32",
"tsc-alias": "^1.8.8"
}
}