-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 3.17 KB
/
package.json
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
{
"name": "kiki-mycoder",
"displayName": "Kiki MyCoder",
"version": "1.0.3",
"publisher": "hfloveyy",
"description": "AI-powered coding assistant for VS Code",
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.95.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hfyydd/kiki-mycoder.git"
},
"icon": "images/logo.png",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "kiki-mycoder.chatView",
"title": "Kiki MyCoder: Open AI Chat"
},
{
"command": "kiki-mycoder.add",
"title": "Add New Chat",
"icon": "$(add)"
},
{
"command": "kiki-mycoder.openSettings",
"title": "Kiki MyCoder: Open Settings",
"icon": "$(gear)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "kiki-mycoder",
"title": "Kiki MyCoder",
"icon": "$(comment-discussion)"
}
]
},
"views": {
"kiki-mycoder": [
{
"type": "webview",
"id": "kiki-mycoder.chatView",
"name": "Chat"
}
]
},
"menus": {
"view/title": [
{
"command": "kiki-mycoder.add",
"when": "view == kiki-mycoder.chatView",
"group": "navigation"
},
{
"command": "kiki-mycoder.openSettings",
"when": "view == kiki-mycoder.chatView",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "kiki-mycoder.insertSelectedText",
"key": "cmd+l",
"mac": "cmd+l",
"when": "editorHasSelection"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run build",
"build": "cd backend && pnpm run build && cd .. && tsc -p ./tsconfig.extension.json && vite build && cp dist/backend/config-template.json dist/backend/config.json",
"watch": "tsc -watch -p ./tsconfig.extension.json",
"dev": "vite",
"pretest": "pnpm run build",
"test": "node ./out/test/runTest.js",
"package": "pnpm vsce package --no-dependencies --ignoreFile .vscodeignore",
"publish": "pnpm vsce publish --no-dependencies --ignoreFile .vscodeignore"
},
"devDependencies": {
"@ai-sdk/azure": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@types/diff": "^6.0.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@types/vscode": "^1.95.0",
"@vitejs/plugin-react": "^4.3.4",
"@vscode/vsce": "^3.2.1",
"ai": "^4.0.13",
"css-loader": "^7.1.2",
"next": "^14.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.82.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"typescript": "^5.3.3",
"vite": "^6.0.3",
"webpack": "^5.75.0"
},
"dependencies": {
"@ai-sdk/openai": "^1.0.7",
"@types/prismjs": "^1.26.5",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"diff": "^7.0.0",
"prismjs": "^1.29.0",
"styled-components": "^6.1.13",
"uuid": "^11.0.3",
"zod": "^3.23.8"
}
}