-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "@howaboua/opencode-workflows-tool",
"version": "0.0.6",
"description": "Enhanced skill tool plugin for OpenCode - 1:1 clone of built-in skill tool with extensibility",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "echo '[build] Note: cp -r requires Unix (Linux/macOS)' && bun build src/index.ts --outdir dist --target bun --sourcemap && tsc --emitDeclarationOnly && cp -r skills dist/",
"dev": "bun --watch src/index.ts",
"prepublishOnly": "bun run build",
"workflow:dry-run": "bun run scripts/workflows-dry-run.ts"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.0"
},
"dependencies": {
"typescript": "^5.9.3"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.0",
"@types/bun": "latest"
},
"keywords": [
"opencode",
"plugin",
"skill",
"tool",
"enhanced"
],
"author": "Igor Warzocha <igorwarzocha@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/IgorWarzocha/opencode-workflows-tool.git"
},
"bugs": {
"url": "https://github.com/IgorWarzocha/opencode-workflows-tool/issues"
},
"homepage": "https://github.com/IgorWarzocha/opencode-workflows-tool#readme",
"publishConfig": {
"access": "public"
}
}