forked from saffron-health/opencode-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.89 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.89 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
{
"name": "opencode-vscode",
"displayName": "OpenCode GUI",
"description": "OpenCode AI coding agent for VSCode GUI extension",
"version": "0.4.3",
"publisher": "TanishqKancharla",
"icon": "media/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/saffron-health/opencode-vscode-extension.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other",
"AI"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "opencode",
"title": "OpenCode",
"icon": "media/icon.svg"
}
]
},
"views": {
"opencode": [
{
"type": "webview",
"id": "opencode.chatView",
"name": ""
}
]
},
"commands": [
{
"command": "opencode.addSelectionToPrompt",
"title": "Add Selection to Prompt",
"category": "OpenCode"
}
],
"menus": {
"editor/context": [
{
"command": "opencode.addSelectionToPrompt",
"when": "editorTextFocus",
"group": "navigation@9"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "npm run build:extension && npm run build:webview",
"build:extension": "vite build --config vite.config.extension.ts",
"build:webview": "vite build --config vite.config.ts",
"watch": "concurrently \"npm run watch:extension\" \"npm run watch:webview\"",
"watch:extension": "vite build --config vite.config.extension.ts --watch --mode development",
"watch:webview": "vite build --config vite.config.ts --watch --mode development",
"clean": "rm -rf dist out",
"dev": "tsx scripts/dev.ts",
"dev:webview": "vite",
"dev:standalone": "vite --open /src/webview/standalone.html",
"uikit": "vite --open /src/webview/uikit.html",
"test": "vitest run && playwright test",
"test:integration": "tsc -p tsconfig.integration.json && node out/tests/integration/runTests.js",
"test:integration:compile": "tsc -p tsconfig.integration.json",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"debug:extension": "tsx scripts/debug-extension.ts",
"demo:standalone": "./scripts/demo-standalone.sh",
"package": "vsce package",
"publish": "vsce publish --skip-duplicate --no-dependencies && source .env && ovsx publish -p \"$OPEN_VSX_KEY\" --no-dependencies",
"publish:pre": "vsce publish --pre-release --no-dependencies && source .env && ovsx publish --pre-release -p \"$OPEN_VSX_KEY\" --no-dependencies",
"google-login": "gcloud auth application-default login"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/mocha": "^10.x",
"@types/node": "^20.x",
"@types/vscode": "^1.74.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.x",
"commander": "^12.x",
"concurrently": "^8.x",
"glob": "^11.x",
"mocha": "^10.x",
"tsx": "^4.x",
"typescript": "^5.x",
"vite": "^5.x",
"vitest": "^1.x"
},
"dependencies": {
"@floating-ui/dom": "^1.7.5",
"@opencode-ai/sdk": "^1.2.14",
"@tiptap/core": "^2.27.2",
"@tiptap/extension-document": "^2.27.2",
"@tiptap/extension-mention": "^2.27.2",
"@tiptap/extension-paragraph": "^2.27.2",
"@tiptap/extension-text": "^2.27.2",
"@tiptap/suggestion": "^2.27.2",
"marked": "^17.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^3.19.0",
"solid-js": "^1.9.10",
"tiptap-solid": "^1.2.1",
"unified": "^11.0.5",
"vite-plugin-solid": "^2.11.10",
"zod": "^4.3.5"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}