-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.85 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
67
68
69
70
71
72
73
74
75
{
"name": "create-agent-starter",
"version": "4.0.0",
"description": "Declarative agent config for Claude Code, Codex, and Cursor: an agent.json manifest for skills, MCP servers, and stack profiles, synced to each agent's native config, plus 29 hand-maintained skills.",
"type": "module",
"main": "src/index.js",
"bin": {
"agent-starter": "bin/cli.js",
"create-agent-starter": "bin/cli.js",
"claude-starter": "bin/cli.js",
"create-claude-starter": "bin/cli.js"
},
"files": [
"bin/",
"src/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"bench": "node bench/run.mjs",
"bench:generate": "node bench/generate-workloads.mjs",
"test": "node --test",
"test:security": "node --test test/*.test.js",
"lint": "eslint src/ test/ bin/ bench/ templates/.claude/utils/",
"prepublishOnly": "bun run lint && bun test"
},
"keywords": [
"claude",
"claude-code",
"codex",
"cursor",
"agents",
"claude-skills",
"hci",
"usability",
"apple-hig",
"hig-doctor",
"human-interface-guidelines",
"design-audit",
"copywriting",
"marketing",
"mcp",
"toon",
"token-efficiency",
"starter"
],
"author": "Raintree",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/raintree-technology/agent-starter.git"
},
"bugs": {
"url": "https://github.com/raintree-technology/agent-starter/issues"
},
"homepage": "https://claude.raintree.technology",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "15.0.0",
"fs-extra": "11.3.3",
"inquirer": "14.0.2",
"ora": "9.4.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@toon-format/toon": "2.1.0",
"eslint": "10.4.1",
"gpt-tokenizer": "3.0.0"
},
"packageManager": "bun@1.3.11"
}