-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (60 loc) · 1.3 KB
/
package.json
File metadata and controls
61 lines (60 loc) · 1.3 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
{
"name": "@mailshieldai/opencode-canvas",
"version": "0.1.2",
"description": "Interactive terminal canvases for OpenCode - calendars, documents, flight booking",
"author": {
"name": "Harsha",
"email": "harsha@example.com"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "bun build ./src/index.ts --outdir dist --target bun",
"start": "bun run src/canvas/cli.ts",
"show": "bun run src/canvas/cli.ts show",
"spawn": "bun run src/canvas/cli.ts spawn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailshieldai/opencode-canvas.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"media"
],
"dependencies": {
"@opencode-ai/plugin": "^1.0.85",
"commander": "^14.0.2",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"react": "^19.2.3"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^19.2.7",
"bun-types": "latest",
"typescript": "^5"
},
"keywords": [
"opencode",
"plugin",
"canvas",
"tui",
"terminal",
"calendar",
"document",
"flight"
],
"license": "MIT"
}