-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 746 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 746 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
36
{
"name": "codeguilds",
"version": "0.2.5",
"description": "CLI for the CodeGuilds registry — install MCP servers, skills, agents, hooks, and prompts for Claude Code",
"bin": {
"codeguilds": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"ora": "^8.1.1",
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.17.57",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}