-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 960 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 960 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
{
"name": "opencode-agent",
"version": "1.0.1",
"type": "module",
"description": "This is a bundle of skills and agents for OpenCode. It includes a variety of pre-built skills and agents that can be used to create powerful applications with OpenCode.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "shx rm -rf dist/skills && shx cp -r src/skills dist/skills && shx rm -rf dist/agents && shx cp -r src/agents dist/agents && shx rm dist/agents/index.ts && shx rm -rf dist/commands && shx cp -r src/commands dist/commands && shx rm dist/commands/index.ts && tsc -p tsconfig.json"
},
"dependencies": {
"@opencode-ai/plugin": "^1.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"shx": "^0.4.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
}
}