-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.41 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
{
"name": "ai-assist-me",
"displayName": "AI assist me",
"description": "Easily run your AI prompts inside your vscode",
"license": "MIT",
"version": "0.0.10",
"engines": {
"vscode": "^1.86.0"
},
"publisher": "starkweb-technologies",
"repository": {
"type": "git",
"url": "https://github.com/momohyusuf/Code-assistant.git"
},
"pricing": "Free",
"icon": "icon.png",
"keywords": [
"AI",
"Google AI",
"Google Gemini",
"Prompting",
"Coding",
"Assistant",
"Node.js"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "ai-assist-me.start",
"title": "AI assist me 🧑💻"
}
],
"menus": {
"editor/context": [
{
"command": "ai-assist-me.start"
}
]
},
"submenus": [
{
"id": "ai-assist-me.start",
"label": "AI assist me 🧑💻"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@google/generative-ai": "^0.2.1"
}
}