-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "synctax",
"version": "2.1.3",
"description": "Universal config sync for the agentic developer stack — sync MCP servers, agents, skills, and permissions across 9 AI clients from a single source of truth.",
"type": "module",
"license": "MIT",
"author": "Kaos599",
"keywords": [
"mcp",
"ai",
"cli",
"sync",
"cursor",
"claude",
"copilot",
"zed",
"opencode",
"developer-tools",
"config",
"agents",
"agentic"
],
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md"
],
"bin": {
"synctax": "./dist/synctax.js"
},
"scripts": {
"build": "bun scripts/build.ts",
"prepublishOnly": "bun run build && bun run test",
"check": "bun run typecheck && bun run lint && bun run test",
"check:strict": "bun run typecheck && bun run lint:strict && bun run test",
"lint": "bunx eslint . --ext .ts",
"lint:strict": "bunx eslint . --ext .ts --max-warnings=0",
"lint:fix": "bunx eslint . --ext .ts --fix",
"test": "vitest run",
"typecheck": "bunx tsc --noEmit",
"synctax": "bun ./bin/synctax.ts"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@inquirer/prompts": "^8.3.2",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"fflate": "^0.8.2",
"ink": "^6.8.0",
"js-yaml": "^4.1.1",
"react": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.37.0",
"vitest": "^4.0.18"
}
}