-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.55 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
{
"name": "commandcode-vscode",
"private": true,
"displayName": "Command Code for VS Code",
"description": "Stop fixing sloppy AI code. Command Code continuously learns your coding taste.",
"version": "0.0.1",
"publisher": "commandcode",
"license": "Apache-2.0",
"icon": "icon.png",
"galleryBanner": {
"color": "#1a1a2e",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/commandCodeAI/command-code"
},
"homepage": "https://commandcode.ai",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"AI",
"Chat",
"Machine Learning",
"Programming Languages",
"Other"
],
"keywords": [
"ai",
"assistant",
"claude",
"code",
"commandcode",
"context",
"coding",
"llm",
"terminal",
"agentic"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "commandcode.openInTerminal",
"title": "Open Command Code",
"category": "Command Code",
"icon": {
"light": "icons/icon-light.svg",
"dark": "icons/icon-dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "commandcode.openInTerminal",
"group": "navigation"
}
]
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.7.1",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
}
}