-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.21 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
{
"name": "VeloxAI",
"displayName": "VeloxAI",
"publisher": "VeloxAI",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "ai-code-assist",
"title": "AI Code Assistant",
"icon": "resources/icon.svg"
}
]
},
"views": {
"ai-code-assist": [
{
"type": "webview",
"id": "aiCodeAssist.chatView",
"name": "Chat"
}
]
},
"commands": [
{
"command": "ai-code-assist.openChat",
"title": "Open AI Chat"
},
{
"command": "aiCodeAssist.logout",
"title": "AI Assistant: Logout",
"category": "AICodeAssist"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --external:tree-sitter --external:tree-sitter-java --external:tree-sitter-javascript --external:tree-sitter-typescript --external:tree-sitter-python --external:onnxruntime-node --external:@lancedb/lancedb --format=cjs --platform=node --minify",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.97.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.25.10",
"eslint": "^9.19.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@huggingface/transformers": "^3.5.1",
"@lancedb/lancedb": "^0.19.1",
"apache-arrow": "^18.0.0",
"diff": "^8.0.2",
"dotenv": "^16.4.7",
"node-fetch": "^3.3.2",
"tree-sitter": "^0.21.1",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2"
}
}