-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.39 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.39 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
{
"name": "why-does-this-exist",
"version": "1.0.2",
"description": "A CLI tool that traces git blame → PRs → issues → reviews and explains legacy code decisions in plain English using AI",
"type": "module",
"bin": {
"wde": "./src/cli.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.ts",
"test": "bun run scripts/test.ts",
"typecheck": "tsc --noEmit",
"postinstall": "echo '\\n✓ wde installed! Run: wde auth\\n'"
},
"dependencies": {
"@anthropic-ai/sdk": "0.88.0",
"citty": "0.2.1",
"keytar": "^7.9.0",
"ollama": "^0.5.11",
"openai": "^4.77.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^6.0.2"
},
"keywords": [
"cli",
"git",
"blame",
"ai",
"claude",
"openai",
"ollama",
"legacy-code",
"documentation",
"developer-tools"
],
"author": "Zain Ali <zain534102@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zain534102/why-does-this-exist.git"
},
"bugs": {
"url": "https://github.com/zain534102/why-does-this-exist/issues"
},
"homepage": "https://github.com/zain534102/why-does-this-exist#readme",
"engines": {
"bun": ">=1.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}