-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
57
58
59
60
61
62
63
64
65
66
{
"name": "cue-ai",
"version": "0.5.0",
"description": "cue — Agent Profile Manager for Claude Code & Codex. Pick a profile, launch with the right skills, MCPs, and plugins.",
"type": "module",
"bin": {
"cue": "bin/cue"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
},
"scripts": {
"cue": "bun src/index.ts",
"test": "bun test",
"build": "bun build src/index.ts --no-bundle",
"postinstall": "echo '' && echo ' ✅ cue installed. Run: cue init' && echo ' Docs: https://github.com/recodeee/cue' && echo ''"
},
"keywords": [
"claude-code",
"codex",
"agent",
"profile",
"skills",
"mcp",
"ai",
"cli",
"developer-tools"
],
"author": "recodeee",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/recodeee/cue.git"
},
"homepage": "https://github.com/recodeee/cue",
"bugs": {
"url": "https://github.com/recodeee/cue/issues"
},
"files": [
"bin/",
"src/",
"profiles/*/profile.yaml",
"profiles/*/logo.png",
"profiles/*/README.md",
"profiles/_types.ts",
"profiles/schema.json",
"profiles/SCHEMA.md",
"profiles/README.md",
"resources/skills/skills/",
"resources/skills/README.md",
"resources/mcps/configs/",
"resources/mcps/README.md",
"resources/icons/",
"plugins/",
"install.sh",
"get.sh",
"README.md",
"LICENSE"
],
"dependencies": {
"@clack/prompts": "^1.4.0",
"ajv": "^8.17.1",
"yaml": "^2.6.0"
}
}