@macalinao/grill-cli
Version:
Zero-config CLI for generating clients for Solana programs
71 lines (70 loc) • 1.6 kB
JSON
{
"name": "@macalinao/grill-cli",
"version": "0.1.2",
"description": "Zero-config CLI for generating clients for Solana programs",
"type": "module",
"sideEffects": false,
"author": "Ian Macalinao <me@ianm.com>",
"homepage": "https://grill.ianm.com",
"license": "Apache-2.0",
"keywords": [
"grill",
"codama",
"solana",
"cli",
"client",
"code-generation",
"esm",
"typescript"
],
"bin": {
"grill": "./dist/bin/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macalinao/grill.git",
"directory": "packages/grill-cli"
},
"scripts": {
"build": "tsc",
"clean": "rm -fr dist/",
"lint": "eslint . --cache",
"test": "bun test"
},
"dependencies": {
"@codama/nodes-from-anchor": "*",
"@macalinao/codama-renderers-js-esm": "0.1.1",
"codama": "*",
"commander": "^14.0.0"
},
"devDependencies": {
"@macalinao/eslint-config": "^4.2.2",
"@macalinao/tsconfig": "^3.2.2",
"@types/bun": "^1.2.20",
"@types/node": "^24.2.1",
"eslint": "^9.33.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"biome check --write --no-errors-on-unmatched",
"eslint --fix --cache"
],
"*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched"
}
}