-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 743 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "ast-grep",
"version": "0.1.0",
"description": "Allows Gemini CLI to grep through code bases and perform more efficient syntax aware find/replace operations than the built-in, limited, \"Replace\" function using ast-grep which is a fast and polyglot tool for code structural search, lint, rewriting at large scale.",
"author": "",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^20.11.25",
"typescript": "^5.4.5",
"vitest": "^4.0.18"
},
"dependencies": {
"@ast-grep/cli": "^0.40.5",
"@modelcontextprotocol/sdk": "^1.0.1",
"zod": "^3.22.4"
}
}