-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "@snailuu/ccs",
"version": "1.4.2",
"description": "CLI sync tool for MCP, Skills, and Prompts across AI clients (Claude, Codex, Gemini, OpenCode)",
"type": "module",
"bin": {
"ccs": "./ccs.ts"
},
"files": [
"ccs.ts",
"src/",
"README.md"
],
"scripts": {
"dev": "bun run ccs.ts",
"build": "bun build ccs.ts --compile --outfile dist/ccs --define __APP_VERSION__=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck",
"link:bun": "bun link",
"unlink:bun": "bun unlink && rm -f $HOME/.bun/bin/ccs",
"release": "release-it",
"release:dry": "release-it --dry-run"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"cli",
"sync",
"mcp",
"claude",
"codex",
"gemini",
"opencode",
"cc-switch"
],
"author": "snailuu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snailuu/ccs.git"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"@types/node": "^20.0.0",
"release-it": "^19.2.4",
"typescript": "^5.3.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0"
}
}