forked from Yeachan-Heo/oh-my-claudecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.9 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "oh-my-claude-sisyphus",
"version": "3.9.2",
"description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"oh-my-claudecode": "dist/cli/index.js",
"omc": "dist/cli/index.js",
"omc-analytics": "dist/cli/analytics.js",
"omc-cli": "dist/cli/index.js"
},
"files": [
"dist",
"agents",
"bridge",
"commands",
"hooks",
"scripts",
"skills",
"templates",
"docs",
".claude-plugin",
".mcp.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/build-skill-bridge.mjs && node scripts/build-mcp-server.mjs && npm run compose-docs",
"build:bridge": "node scripts/build-skill-bridge.mjs",
"compose-docs": "node scripts/compose-docs.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format": "prettier --write src/**/*.ts",
"sync-metadata": "tsx scripts/sync-metadata.ts",
"sync-metadata:verify": "tsx scripts/sync-metadata.ts --verify",
"sync-metadata:dry-run": "tsx scripts/sync-metadata.ts --dry-run",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run compose-docs"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@ast-grep/napi": "^0.31.0",
"@modelcontextprotocol/sdk": "^1.25.3",
"@tokscale/core": "^1.0.25",
"@types/better-sqlite3": "^7.6.13",
"ajv": "^8.17.1",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"jsonc-parser": "^3.3.1",
"safe-regex": "^2.1.1",
"vscode-languageserver-protocol": "^3.17.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.19.7",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/ui": "^4.0.17",
"esbuild": "^0.27.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yeachan-Heo/oh-my-claudecode.git"
},
"homepage": "https://github.com/Yeachan-Heo/oh-my-claudecode#readme",
"bugs": {
"url": "https://github.com/Yeachan-Heo/oh-my-claudecode/issues"
},
"author": "Yeachan Heo",
"license": "MIT",
"keywords": [
"claude",
"claude-code",
"ai",
"agent",
"multi-agent",
"orchestration",
"omc",
"claudecode",
"anthropic",
"llm"
],
"publishConfig": {
"access": "public"
}
}