-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "opcup",
"version": "0.0.2",
"description": "Interactive CLI to scaffold an .opencode/ folder with frameworks, MCP tools, and skills for any project",
"license": "MIT",
"engines": {
"node": ">=20"
},
"author": "robots4life",
"repository": {
"type": "git",
"url": "git+https://github.com/robots4life/opencode-setup.git"
},
"type": "module",
"bin": {
"opcup": "bin/opcup.js"
},
"scripts": {
"lint": "eslint bin/ src/",
"format": "prettier --write 'bin/**/*.js' 'src/**/*.js'",
"check": "prettier --check 'bin/**/*.js' 'src/**/*.js' && eslint bin/ src/ && npm pkg fix && npm pack --dry-run > /dev/null"
},
"files": [
"bin/",
"src/",
"template/",
"docs/"
],
"keywords": [
"opencode",
"opencode-setup",
"opencode-config",
"opencode-skills",
"opencode-mcp",
"cli",
"scaffold"
],
"dependencies": {
"@clack/prompts": "^1.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"prettier": "^3.9.6"
}
}