This repository was archived by the owner on Apr 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.22 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
{
"name": "alitacodechat",
"displayName": "ELITEA Code Chat",
"description": "",
"publisher": "ProjectAlita",
"icon": "static/128x128.png",
"version": "0.4.7",
"engines": {
"vscode": "^1.87.0"
},
"workspaces": [
"packages/*"
],
"categories": [
"Other"
],
"keywords": [
"elitea",
"alita",
"codechat",
"openai",
"azure",
"gpt4",
"copilot",
"flutter",
"dart",
"c#",
"java",
"javascript",
"typescript",
"ai",
"code",
"llm",
"refactor"
],
"repository": "https://github.com/ProjectAlita/alitacodechat.git",
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "eliteacode",
"title": "Elitea Code",
"icon": "static/icon.png"
}
]
},
"views": {
"eliteacode": [
{
"type": "webview",
"id": "eliteacodechat.view",
"name": "Chat"
}
]
},
"commands": [
{
"command": "eliteacodechat.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vsce": "npx vsce package",
"publish": "npx vsce publish",
"vscode:prepublish": "npm run package",
"package": "npm run build",
"build": "npx lerna run build",
"build-watch": "npm run build:extension:dev && npm run watch-all",
"build:extension:dev": "npx lerna run --scope alitacodechat build:dev --stream",
"watch-all": "concurrently --kill-others \"npm:watch:shared\" \"npm:watch:ui\" \"npm:watch:extension\"",
"watch:ui": "npx lerna run --scope alitacodechat-ui watch:ui",
"watch:extension": "npx lerna run --scope alitacodechat watch",
"watch:shared": "npx lerna run --scope shared watch:shared",
"lint": "npx lerna run lint"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"lerna": "^8.1.2"
},
"dependencies": {
"date-fns": "^3.6.0",
"html-modifier": "^1.2.0"
},
"extensionDependencies": [
"ProjectAlita.alitacode"
]
}