groveyard 0.1.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/README.md +9 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Groveyard
|
|
2
|
+
|
|
3
|
+
Groveyard gives every coding-agent task an isolated, validated, disposable Git workspace—inside Codex, Claude Code, VS Code, and the tools you already use.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx groveyard setup
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
This package is the short command-name wrapper for [`@groveyard/mcp`](https://www.npmjs.com/package/@groveyard/mcp). It runs the same CLI and MCP server.
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "groveyard",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "One-command setup and CLI for the Groveyard MCP server.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"groveyard": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/**/*.js",
|
|
11
|
+
"dist/**/*.d.ts",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc -p tsconfig.json",
|
|
16
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@groveyard/mcp": "^0.1.15"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=20"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
}
|
|
28
|
+
}
|