-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "@debugtalk/opencode-hashline",
"version": "0.2.1",
"type": "module",
"description": "Hashline patch language plugin for OpenCode — compact, line-anchored, tag-verified file edits",
"license": "MIT",
"author": "debugtalk",
"homepage": "https://github.com/debugtalk/opencode-hashline#readme",
"bugs": "https://github.com/debugtalk/opencode-hashline/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/debugtalk/opencode-hashline.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"bun": ">=1.3.14"
},
"keywords": [
"opencode",
"opencode-plugin",
"hashline",
"patch",
"edit",
"llm"
],
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./plugin": "./src/plugin.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"test": "bun test tests/"
},
"dependencies": {
"@oh-my-pi/hashline": "^16.2.5"
},
"devDependencies": {
"@debugtalk/opencode-hashline": "^0.2.0",
"@opencode-ai/plugin": "^1.17.11",
"@types/bun": "^1.3.14",
"typescript": "^5.7.0"
}
}