-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.49 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": "intellectify",
"displayName": "Intellectify",
"description": "A wonderfull AI powered tool with smart automations",
"version": "0.0.1",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:Intellectify.convert",
"onCommand:Intellectify.generate",
"onCommand:Intellectify.search",
"onCommand:Intellectify.write",
"onCommand:Intellectify.doSummarize",
"onCommand:Intellectify.answer"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "Intellectify.convert",
"title": "Intellectify: Convert code"
},
{
"command": "Intellectify.generate",
"title": "Intellectify: Generate documentation"
},
{
"command": "Intellectify.search",
"title": "Intellectify: Do semantic search"
},
{
"command": "Intellectify.write",
"title": "Intellectify: Write code"
},
{
"command": "Intellectify.answer",
"title": "Intellectify: Answer"
}
,
{
"command": "Intellectify.doSummarize",
"title": "Intellectify: Summarize"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
},
"dependencies": {
"dotenv": "^14.3.2",
"openai": "^2.0.2"
}
}