-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 976 Bytes
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
{
"name": "@0xprathamesh/why-cli",
"version": "1.1.1",
"description": "AI-first CLI debugger with safe simulation, code-aware fixes, and LangChain support for OpenAI and Ollama.",
"main": "dist/cli/index.js",
"files": [
"dist"
],
"bin": {
"why": "dist/cli/index.js"
},
"preferGlobal": true,
"scripts": {
"build": "tsc",
"dev": "node dist/cli/index.js",
"check": "npm run build && npm pack --dry-run --cache ./.npm-pack-cache",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"debugging",
"developer-tools",
"openai",
"ollama",
"typescript",
"langchain"
],
"author": "why-cli contributors",
"license": "ISC",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"dependencies": {
"@langchain/core": "^0.3.58",
"@langchain/ollama": "^0.2.0",
"@langchain/openai": "^0.6.16"
},
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^6.0.2"
}
}