-
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) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 868 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": "@matthewye/opencode-toolbox",
"version": "1.0.0",
"description": "OpenCode autopilot development toolkit — skills, agents, commands for autonomous development workflow",
"type": "module",
"main": "./dist/index.js",
"license": "MIT",
"files": [
"dist/",
"src/",
"skills/",
"upstream/skills/",
"agents/",
"commands/",
"principles/",
"docs/agents/"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"dev": "bun run --watch src/index.ts"
},
"dependencies": {
"@opencode-ai/plugin": "latest",
"adm-zip": "^0.5.17",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@tsconfig/node22": "latest",
"@types/adm-zip": "^0.5.8",
"@types/bun": "^1.3.14",
"@types/node": "latest",
"typescript": "latest"
}
}