synctax 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +64 -0
- package/README.md +262 -0
- package/dist/synctax.js +61757 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "synctax",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"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.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Kaos599",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"mcp",
|
|
10
|
+
"ai",
|
|
11
|
+
"cli",
|
|
12
|
+
"sync",
|
|
13
|
+
"cursor",
|
|
14
|
+
"claude",
|
|
15
|
+
"copilot",
|
|
16
|
+
"zed",
|
|
17
|
+
"opencode",
|
|
18
|
+
"developer-tools",
|
|
19
|
+
"config",
|
|
20
|
+
"agents",
|
|
21
|
+
"agentic"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/",
|
|
28
|
+
"README.md",
|
|
29
|
+
"CHANGELOG.md"
|
|
30
|
+
],
|
|
31
|
+
"bin": {
|
|
32
|
+
"synctax": "./dist/synctax.js"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "bun scripts/build.ts",
|
|
36
|
+
"prepublishOnly": "bun run build && bun run test",
|
|
37
|
+
"check": "bun run typecheck && bun run lint && bun run test",
|
|
38
|
+
"check:strict": "bun run typecheck && bun run lint:strict && bun run test",
|
|
39
|
+
"lint": "bunx eslint . --ext .ts",
|
|
40
|
+
"lint:strict": "bunx eslint . --ext .ts --max-warnings=0",
|
|
41
|
+
"lint:fix": "bunx eslint . --ext .ts --fix",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"typecheck": "bunx tsc --noEmit",
|
|
44
|
+
"synctax": "bun ./bin/synctax.ts"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@inkjs/ui": "^2.0.0",
|
|
48
|
+
"@inquirer/prompts": "^8.3.2",
|
|
49
|
+
"chalk": "^5.6.2",
|
|
50
|
+
"chokidar": "^5.0.0",
|
|
51
|
+
"cli-table3": "^0.6.5",
|
|
52
|
+
"commander": "^14.0.3",
|
|
53
|
+
"fflate": "^0.8.2",
|
|
54
|
+
"ink": "^6.8.0",
|
|
55
|
+
"js-yaml": "^4.1.1",
|
|
56
|
+
"react": "^19.2.4",
|
|
57
|
+
"zod": "^4.3.6"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/bun": "latest",
|
|
61
|
+
"@types/js-yaml": "^4.0.9",
|
|
62
|
+
"@types/node": "^25.3.5",
|
|
63
|
+
"@types/react": "^19.2.14",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
65
|
+
"@typescript-eslint/parser": "^8.46.3",
|
|
66
|
+
"eslint": "^9.37.0",
|
|
67
|
+
"vitest": "^4.0.18"
|
|
68
|
+
}
|
|
69
|
+
}
|