-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "@klocus/opencode-path-instructions",
"version": "1.0.6",
"description": "OpenCode plugin that injects path-specific *.instructions.md files from .github/instructions and .opencode/instructions",
"repository": {
"type": "git",
"url": "git+https://github.com/klocus/opencode-path-instructions.git"
},
"author": "Paweł Klockiewicz",
"license": "MIT",
"main": "./dist/path-instructions.js",
"types": "./dist/path-instructions.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:bundle": "bun build ./src/path-instructions.ts --outfile=dist/path-instructions.js --target=node --external:@opencode-ai/plugin",
"prepare": "bun build ./src/path-instructions.ts --outfile=dist/path-instructions.js --target=node --external:@opencode-ai/plugin",
"prepublishOnly": "npm run build:bundle",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.2.27",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"keywords": [
"opencode",
"opencode-plugin",
"copilot",
"instructions",
"path-specific"
]
}