forked from gastonzarate/coder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (97 loc) · 2.14 KB
/
package.json
File metadata and controls
98 lines (97 loc) · 2.14 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "codi-ai",
"icon": "media/icon.png",
"publisher": "codiai",
"displayName": "Codi AI",
"description": "A coder assistant that helps you write code faster.",
"version": "0.0.17",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"main": "./extension.js",
"activationEvents": [
"onView:coder-pro.coderView"
],
"contributes": {
"iconFonts": [
{
"id": "codicon",
"src": [
{
"path": "./node_modules/@vscode/codicons/dist/codicon.ttf",
"format": "truetype"
}
]
}
],
"commands": [
{
"command": "coder-pro.openAssistant",
"title": "Open Coder Assistant"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "coder-pro-sidebar",
"title": "Codi AI",
"icon": "media/icon.png"
}
]
},
"views": {
"coder-pro-sidebar": [
{
"type": "webview",
"id": "coder-pro.coderView",
"name": "Code Assistant"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.8",
"@types/node": "22.5.5",
"@types/vscode": "^1.93.0",
"@vscode/codicons": "^0.0.36",
"eslint": "^9.11.0",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"typescript": "^5.6.2"
},
"dependencies": {
"@vscode/codicons": "^0.0.32",
"binary": "^0.3.0",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"flat": "^5.0.2",
"glob": "^11.0.0",
"glob-parent": "^5.1.2",
"globals": "^13.24.0",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"ignore": "^6.0.2",
"isbinaryfile": "^5.0.2",
"jinja-js": "^0.1.8",
"jschardet": "^3.1.3",
"lodash.debounce": "^4.0.8",
"word-wrap": "^1.2.5",
"@langchain/core": "^0.3.10",
"@langchain/anthropic": "^0.3.3",
"@langchain/openai": "^0.3.7",
"@langchain/aws": "^0.1.1",
"@vscode/extension-telemetry": "^0.9.7"
},
"keywords": [],
"author": "",
"license": "ISC"
}