Files

28 lines
607 B
JSON
Raw Permalink Normal View History

2026-05-18 21:19:15 +09:00
{
"name": "@oh-my-opencode/ast-grep-mcp",
"version": "0.0.0",
"type": "module",
"private": true,
"bin": {
2026-05-30 19:12:09 +09:00
"omo-ast-grep": "dist/cli.js"
2026-05-18 21:19:15 +09:00
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node --format esm",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"test": "bun test src/*.test.ts"
},
"dependencies": {
"@oh-my-opencode/ast-grep-core": "workspace:*",
2026-05-18 21:19:15 +09:00
"@ast-grep/cli": "^0.41.1"
},
"devDependencies": {
"bun-types": "1.3.12"
}
}