forked from Rakhmanazizi/CodeVa-Java-Code-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.15 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.15 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
99
100
{
"name": "codeva",
"displayName": "CodeVa: Java Assistant for Code Generator",
"description": "Java coding assistant with AI for Code Generator",
"version": "1.3.11",
"publisher": "RakhmanAzizi-Dev",
"icon": "media/CodeVa.png",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "qwen-chatbot-container",
"title": "CodeVa",
"icon": "media/CodeVa-Logo.png"
}
]
},
"views": {
"qwen-chatbot-container": [
{
"type": "webview",
"id": "qwenChatbot.view",
"name": "CodeVa",
"icon": "media/CodeVa-Logo.png"
}
]
},
"configuration": {
"title": "CodeVa Settings"
},
"commands": [
{
"command": "codeva.newChat",
"title": "New Chat",
"icon": "$(add)"
},
{
"command": "codeva.showHistory",
"title": "Chat History",
"icon": "$(history)"
}
],
"menus": {
"view/title": [
{
"command": "codeva.newChat",
"when": "view == qwenChatbot.view",
"group": "navigation"
},
{
"command": "codeva.showHistory",
"when": "view == qwenChatbot.view",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"copy-assets": "node ./copy-assets.js",
"compile": "npm run copy-assets &&npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/codicons": "^0.0.36",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"fs-extra": "^11.3.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
}
}