repolith 0.0.1 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +15 -2
  2. package/dist/cli.js +39833 -1706
  3. package/package.json +12 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repolith",
3
- "version": "0.0.1",
3
+ "version": "0.2.0",
4
4
  "description": "Make a set of independent git repos feel like one monorepo — TOML manifest, atomic lockfile hash, parallel git dispatch, a VS Code extension, and an MCP server for AI agents.",
5
5
  "keywords": [
6
6
  "git",
@@ -16,6 +16,14 @@
16
16
  ],
17
17
  "license": "MIT",
18
18
  "author": "Ricky Cooper",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/ethanrickyjrjr-wq/repolith.git"
22
+ },
23
+ "homepage": "https://github.com/ethanrickyjrjr-wq/repolith#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/ethanrickyjrjr-wq/repolith/issues"
26
+ },
19
27
  "type": "module",
20
28
  "bin": {
21
29
  "repolith": "dist/cli.js"
@@ -35,10 +43,12 @@
35
43
  "prepublishOnly": "bun run build"
36
44
  },
37
45
  "dependencies": {
46
+ "@modelcontextprotocol/sdk": "^1.29.0",
38
47
  "commander": "^15.0.0",
39
48
  "execa": "9.6.1",
40
49
  "p-limit": "7.3.0",
41
- "smol-toml": "1.7.0"
50
+ "smol-toml": "1.7.0",
51
+ "zod": "^4.4.3"
42
52
  },
43
53
  "devDependencies": {
44
54
  "@types/node": "^26.0.1",