-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "opencode-generative-ui",
"version": "0.1.4",
"description": "OpenCode plugin that renders HTML and SVG widgets in native macOS windows using Glimpse.",
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"files": [
"dist",
"src/glimpseui.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build && bun run typecheck",
"typecheck": "tsc -p tsconfig.json"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"widgets",
"svg",
"html",
"glimpseui"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tspython/opencode-generative-ui.git"
},
"bugs": {
"url": "https://github.com/tspython/opencode-generative-ui/issues"
},
"homepage": "https://github.com/tspython/opencode-generative-ui#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode-ai/plugin": "1.3.13",
"glimpseui": "^0.3.5",
"morphdom": "^2.7.4"
},
"devDependencies": {
"@types/node": "^22.15.21",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"glimpseui"
]
}