forked from Haleclipse/Claudix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.35 KB
/
Copy pathpackage.json
File metadata and controls
153 lines (153 loc) · 4.35 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
{
"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"
}
]
},
"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",
"package": "vsce package --no-dependencies",
"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.17",
"@types/node": "^22.19.1",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-vue": "^6.0.1",
"@vscode/vsce": "^3.7.0",
"concurrently": "^9.2.1",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^4.0.9",
"vue-tsc": "^3.1.4"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.53",
"@anthropic-ai/sdk": "^0.69.0",
"@gn8/alien-signals-vue": "^0.1.1",
"@mdi/font": "^7.4.47",
"@modelcontextprotocol/sdk": "^1.22.0",
"@vscode/codicons": "^0.0.42",
"@vueuse/core": "^14.0.0",
"alien-signals": "^3.1.0",
"fuse.js": "^7.1.0",
"lexical": "^0.38.2",
"lexical-vue": "^0.14.0",
"marked": "^17.0.0",
"motion-v": "^1.7.4",
"path-browserify-esm": "^1.0.6",
"pinia": "^3.0.4",
"vue": "^3.5.24",
"zod": "^3.25.76"
},
"keywords": [
"vscode",
"extension",
"claude",
"ai",
"coding-assistant"
],
"repository": {
"type": "git",
"url": "https://github.com/Haleclipse/Claudix"
},
"license": "AGPL-3.0"
}