-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.81 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.81 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
{
"name": "whisper-ai",
"version": "1.6.0",
"description": "AI-powered code intelligence CLI for code security, analysis, and review",
"main": "lib/index.js",
"type": "module",
"bin": {
"whisper": "./bin/whisper.js"
},
"scripts": {
"start": "node bin/whisper.js",
"dev": "node --watch bin/whisper.js",
"test": "echo \"No tests specified\"",
"format": "prettier --write .",
"publish": "npm publish"
},
"keywords": [
"cli",
"ai",
"code-analysis",
"security",
"code-review",
"developer-tools",
"whisper",
"llm",
"gemini",
"openai"
],
"author": "Whisper CLI Team",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "latest",
"@babel/parser": "latest",
"@babel/traverse": "latest",
"@google/generative-ai": "latest",
"@inquirer/prompts": "^7.7.0",
"axios": "latest",
"boxen": "latest",
"chalk": "latest",
"chalk-animation": "^2.0.3",
"cli-table3": "latest",
"commander": "latest",
"dotenv": "latest",
"figlet": "latest",
"fs-extra": "latest",
"glob": "latest",
"gradient-string": "latest",
"inquirer": "latest",
"js-yaml": "latest",
"markdown-it": "latest",
"nanospinner": "latest",
"node-fetch": "latest",
"openai": "latest",
"ora": "latest",
"table": "latest",
"update-notifier": "latest",
"yaml": "latest"
},
"devDependencies": {
"@types/node": "latest",
"nodemon": "latest",
"prettier": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Alinxus/whisper-cli.git"
},
"bugs": {
"url": "https://github.com/Alinxus/whisper-cli/issues"
},
"homepage": "https://whisper-cli.dev",
"preferGlobal": true,
"publishConfig": {
"access": "public"
}
}