-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 4.82 KB
/
package.json
File metadata and controls
167 lines (167 loc) · 4.82 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "claudix-vscode",
"displayName": "Claudix - Claude Code for VSCode",
"description": "Claude Code for VSCode. Bring the power of Claude AI assistant directly into your coding environment.",
"version": "0.3.9",
"publisher": "Haleclipse",
"engines": {
"vscode": "^1.98.0",
"node": ">=18.0.0"
},
"categories": [
"AI",
"Other"
],
"icon": "resources/claude-logo.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.cjs",
"contributes": {
"configuration": {
"title": "Claudix",
"properties": {
"claudix.selectedModel": {
"type": "string",
"default": "default",
"description": "The AI model for Claude Code"
},
"claudix.environmentVariables": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Environment variable name"
},
"value": {
"type": "string",
"description": "Environment variable value"
}
},
"required": [
"name",
"value"
]
},
"default": [],
"description": "Environment variables to set when launching Claude"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "claudix-chat-sidebar",
"title": "Claudix",
"icon": "resources/claude-logo.svg"
}
]
},
"views": {
"claudix-chat-sidebar": [
{
"icon": "resources/claude-logo.svg",
"type": "webview",
"id": "claudix.chatView",
"name": "Claudix"
}
]
},
"commands": [
{
"command": "claudix.showChat",
"title": "Show Claudix"
},
{
"command": "claudix.openSettings",
"title": "Claudix: Open Settings",
"icon": "$(gear)"
}
],
"menus": {
"view/title": [
{
"command": "claudix.openSettings",
"when": "view == claudix.chatView",
"group": "navigation"
}
]
}
},
"scripts": {
"dev": "concurrently \"pnpm run dev:webview\" \"pnpm run watch:extension\"",
"dev:webview": "vite --config src/webview/vite.config.ts --port 5173 --strictPort",
"build:extension": "tsx esbuild.ts --production",
"build:webview": "vite build --config src/webview/vite.config.ts",
"build": "pnpm run build:webview && pnpm run build:extension",
"watch:extension": "tsx esbuild.ts --watch",
"watch:webview": "vite build --config src/webview/vite.config.ts --watch",
"watch": "concurrently \"pnpm run watch:extension\" \"pnpm run watch:webview\"",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:webview": "vue-tsc -p src/webview/tsconfig.json --noEmit",
"typecheck:all": "pnpm run typecheck && pnpm run typecheck:webview",
"prepackage": "pnpm run build && cp README.md README.md.bak && sed -i '' 's|https://awesome.re/mentioned-badge.svg|assets/mentioned-badge.png|g' README.md",
"package": "vsce package --no-dependencies",
"postpackage": "mv README.md.bak README.md",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,vue}\" && eslint src --ext ts,tsx,vue --fix"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.3",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vscode/vsce": "^3.7.1",
"concurrently": "^9.2.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.3",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^4.0.16",
"vue-tsc": "^3.2.1",
"vue-vine": "^1.7.27"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.76",
"@anthropic-ai/sdk": "^0.71.2",
"@gn8/alien-signals-vue": "^0.1.1",
"@mdi/font": "^7.4.47",
"@modelcontextprotocol/sdk": "^1.25.1",
"@vscode/codicons": "^0.0.44",
"@vueuse/core": "^14.1.0",
"alien-signals": "^3.1.2",
"fuse.js": "^7.1.0",
"lexical": "^0.39.0",
"lexical-vue": "^0.14.1",
"marked": "^17.0.1",
"motion-v": "^1.7.4",
"path-browserify-esm": "^1.0.6",
"pinia": "^3.0.4",
"reka-ui": "^2.8.0",
"vue": "^3.5.26",
"zod": "^3.25.76"
},
"keywords": [
"vscode",
"extension",
"claude",
"ai",
"coding-assistant"
],
"repository": {
"type": "git",
"url": "https://github.com/Haleclipse/Claudix"
},
"license": "AGPL-3.0"
}