-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "@bvdr/bluejay",
"version": "1.3.1",
"description": "A command line tool that speeds up development process using AI to interpret natural language requests and execute terminal commands",
"main": "index.js",
"bin": {
"j": "./index.js"
},
"files": [
"index.js",
"tools/",
"utils/",
"scripts/",
"README.md",
"LICENSE",
"CHANGELOG.md",
".env.example"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node scripts/postinstall.js",
"dev": "node scripts/dev.js",
"dev:unlink": "npm unlink -g @bvdr/bluejay && echo 'Development symlink removed. Run npm install -g @bvdr/bluejay to restore production version.'",
"clean": "node scripts/clean.js",
"clean:prefs": "rm -f ~/.j/.j-preferences .j-preferences && echo 'Preferences cleaned'",
"clean:env": "rm -f ~/.j/.env && echo 'API keys cleaned'",
"test:local": "node index.js \"list files in current directory\"",
"validate": "node test-package.js"
},
"keywords": [
"cli",
"productivity",
"ai",
"openai",
"terminal",
"automation",
"natural-language"
],
"author": "BVDR Organization",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bvdr/BlueJay.git"
},
"homepage": "https://github.com/bvdr/BlueJay#readme",
"bugs": {
"url": "https://github.com/bvdr/BlueJay/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@clack/prompts": "^0.7.0",
"@google/generative-ai": "^0.21.0",
"@octokit/rest": "^19.0.13",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"inquirer": "^8.2.6",
"openai": "^4.67.3",
"ora": "^5.4.1"
}
}