-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.76 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@leohenon/opencode-vim-plugin",
"version": "0.1.5",
"description": "Vim mode plugin for OpenCode.",
"keywords": [
"opencode",
"plugin",
"tui",
"vim"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leohenon/opencode-vim-plugin.git"
},
"bugs": {
"url": "https://github.com/leohenon/opencode-vim-plugin/issues"
},
"homepage": "https://leohenon.github.io/opencode-vim/",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/tui.js",
"./tui": "./dist/tui.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "bun test",
"build": "bun run script/build.ts",
"typecheck": "tsc --noEmit",
"check:keymap": "bun run script/check-keymap.ts",
"check:adapter": "bun run script/check-adapter.ts",
"check": "bun run typecheck && bun run test && bun run check:keymap && bun run build && bun run check:adapter",
"prepack": "bun run check"
},
"engines": {
"opencode": ">=1.17.10"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.17.10",
"@opentui/core": ">=0.4.2",
"@opentui/keymap": ">=0.4.2",
"@opentui/solid": ">=0.4.2"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
},
"@opentui/core": {
"optional": true
},
"@opentui/keymap": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.10",
"@opentui/core": "^0.4.2",
"@opentui/keymap": "^0.4.2",
"@opentui/solid": "^0.4.2",
"@types/bun": "latest",
"solid-js": "1.9.12",
"typescript": "^5.9.0"
}
}