-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.81 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@flyingrobots/graft",
"version": "0.6.1",
"description": "Context governor and between-commit activity surface for coding agents",
"type": "module",
"packageManager": "pnpm@10.30.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"graft": "./bin/graft.js",
"git-graft": "./bin/graft.js"
},
"files": [
"bin/",
"dist/",
"src/",
"ADVANCED_GUIDE.md",
"ARCHITECTURE.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"GUIDE.md",
"docs/CLI.md",
"docs/MCP.md",
"docs/SETUP.md",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"graft": "node ./bin/graft.js",
"build": "tsc -p tsconfig.build.json",
"prepack": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"pack:check": "pnpm pack --dry-run",
"security:check": "tsx scripts/check-release-security.ts",
"release:surface-gate": "vitest run --run test/unit/release/package-library-surface.test.ts test/unit/release/three-surface-capability-posture.test.ts",
"release:check": "pnpm lint && pnpm typecheck && pnpm release:surface-gate && pnpm test && pnpm security:check && pnpm pack:check"
},
"engines": {
"node": ">=20.11.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/flyingrobots/graft#readme",
"bugs": {
"url": "https://github.com/flyingrobots/graft/issues"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"cursor",
"coding-agent",
"ai-agent",
"context-window",
"code-navigation",
"structural-diff",
"tree-sitter",
"developer-tools"
],
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/flyingrobots/graft.git"
},
"dependencies": {
"@flyingrobots/bijou": "^4.4.1",
"@flyingrobots/bijou-node": "^4.4.1",
"@git-stunts/git-warp": "^16.0.0",
"@git-stunts/plumbing": "^2.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"picomatch": "^4.0.4",
"tree-sitter-wasms": "0.1.13",
"tsx": "^4.21.0",
"web-tree-sitter": "^0.20.8",
"zod": "4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@types/picomatch": "^4.0.2",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.5",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [],
"overrides": {
"vite": "^8.0.5",
"hono": ">=4.12.14"
}
}
}