-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.38 KB
/
package.json
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
{
"name": "ai",
"description": "Personalized AI assistant",
"version": "0.0.0",
"publisher": "efritz",
"license": "MIT",
"main": "./dist/extension.js",
"bin": {
"ai": "dist/cli.mjs"
},
"engines": {
"vscode": "^1.92.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "aidev.chat",
"title": "Open aidev"
},
{
"command": "aidev.chat-model",
"title": "Open aidev with specific model"
}
],
"keybindings": [
{
"command": "aidev.chat",
"key": "cmd+shift+i"
}
]
},
"scripts": {
"clean": "rm -rf dist ai-0.0.0.vsix",
"build": "yarn clean && tsc --noEmit && node esbuild.config.js",
"dev": "yarn build && node dist/cli.mjs",
"vsix": "yarn build && yarn vsce package --no-dependencies --allow-missing-repository",
"format": "prettier '**/{*.{ts,json},.*.cjs}' --list-different --write",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "jest"
},
"dependencies": {
"@anthropic-ai/sdk": "0.30.1",
"@google/generative-ai": "0.21.0",
"@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
"@types/diff": "^5.2.2",
"@vscode/vsce": "^3.0.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"diff": "^7.0.0",
"eventsource": "^2.0.2",
"glob": "^11.0.0",
"groq-sdk": "0.7.0",
"minimatch": "^10.0.1",
"ollama": "0.5.9",
"openai": "4.68.4",
"ora": "^8.0.1",
"tree-kill": "^1.2.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/eventsource": "^1.1.15",
"@types/jest": "^29.5.12",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.14.12",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.92.0",
"@typescript-eslint/parser": "^8.2.0",
"depcheck": "^1.4.7",
"esbuild": "^0.23.1",
"eslint": "^9.8.0",
"eslint-plugin-unused-imports": "^4.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.5.4"
}
}