-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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": "@angdrew/opencode-hashline-plugin",
"version": "1.6.6",
"description": "Hashline annotation and native-tool edit translation for OpenCode.",
"repository": {
"type": "git",
"url": "git+https://github.com/AngDrew/opencode-hashline.git"
},
"homepage": "https://github.com/AngDrew/opencode-hashline#readme",
"bugs": {
"url": "https://github.com/AngDrew/opencode-hashline/issues"
},
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "node --test",
"bench": "node bench/runner.mjs",
"bench:legacy": "node scripts/benchmark.mjs",
"pack:check": "npm pack --dry-run",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"opencode",
"plugin",
"hashline",
"tools"
],
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "^1.2.22"
},
"devDependencies": {
"@opencode-ai/plugin": "1.2.27",
"@types/node": "^22.13.10",
"typescript": "^5.8.2"
}
}