-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.37 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.37 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@janole/code-bandit",
"description": "Your AI-powered codebase companion that speaks your language",
"version": "0.5.20",
"author": "Jan Ole Suhr <ole@janole.com> (https://janole.com)",
"homepage": "https://github.com/janole/code-bandit?#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/janole/code-bandit.git"
},
"bugs": {
"url": "https://github.com/janole/code-bandit/issues"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.node.d.ts",
"bin": {
"coba": "dist/coba.js"
},
"exports": {
".": {
"types": "./dist/index.node.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./vscode": {
"types": "./dist/index.vscode.d.ts",
"import": "./dist/index.vscode.js",
"default": "./dist/index.vscode.js"
}
},
"typesVersions": {
"*": {
"vscode": [
"dist/index.vscode.d.ts"
]
}
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "node --import @swc-node/register/esm-register ./src/coba.tsx",
"watch": "tsc --watch",
"typecheck": "npx tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"ok": "npm run lint:fix && npm run typecheck",
"prebuild": "npm run genversion && npm run ok",
"build": "rimraf dist && tsc -p tsconfig.dts.json && node esbuild.js",
"genversion": "COMMIT_HASH=$(git rev-parse --short HEAD) && echo \"export const VERSION = \\\"${npm_package_version}\\\";\\nexport const COMMIT_HASH = \\\"${COMMIT_HASH}\\\";\" > src/.version.ts",
"prepack": "npm run build"
},
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"@langchain/anthropic": "^1.3.21",
"@langchain/core": "^1.1.29",
"@langchain/google-genai": "^2.1.22",
"@langchain/groq": "^1.1.3",
"@langchain/ollama": "^1.2.5",
"@langchain/openai": "^1.2.11",
"chalk": "^5.4.1",
"clipboardy": "^4.0.0",
"commander": "^14.0.0",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"globby": "^14.1.0",
"ink": "^6.0.1",
"langchain": "^1.2.28",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.1.0",
"ulid": "^3.0.1",
"write-file-atomic": "^6.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@stylistic/eslint-plugin": "^5.1.0",
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.13.3",
"@types/marked": "^5.0.2",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^24.0.10",
"@types/react": "^19.1.8",
"@types/write-file-atomic": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"esbuild": "^0.25.6",
"esbuild-node-externals": "^1.18.0",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^2.20.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^61.0.1",
"globals": "^16.3.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}