forked from oribarilan/vimcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 687 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 687 Bytes
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
{
"name": "vimcode",
"version": "0.9.0",
"description": "Vim keybindings for the OpenCode prompt",
"author": "Ori Bar-ilan",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/oribarilan/vimcode.git"
},
"keywords": [
"opencode",
"vim",
"tui",
"plugin"
],
"exports": {
"./tui": "./src/index.ts"
},
"files": [
"src/"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "biome check .",
"fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@opencode-ai/plugin": "^1.15.4",
"tsx": "^4.22.1"
}
}