UNPKG

@macalinao/grill

Version:

Modern Solana development kit for React applications with automatic account batching, caching, and transaction notifications

83 lines (82 loc) 2.13 kB
{ "name": "@macalinao/grill", "version": "0.5.4", "description": "Modern Solana development kit for React applications with automatic account batching, caching, and transaction notifications", "license": "Apache-2.0", "author": "Ian Macalinao <me@ianm.com>", "homepage": "https://grill.ianm.com", "keywords": [ "solana", "react", "blockchain", "web3", "dataloader", "batching", "caching", "gill", "ian-macalinao" ], "type": "module", "sideEffects": false, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "files": [ "dist/", "src/" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/macalinao/grill.git", "directory": "packages/grill" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf dist", "typecheck": "tsc --noEmit" }, "dependencies": { "@macalinao/clients-token-metadata": "^0.2.3", "@macalinao/dataloader-es": "0.2.4", "@macalinao/solana-batch-accounts-loader": "0.2.4", "@macalinao/token-utils": "0.1.7", "@macalinao/zod-solana": "0.1.3", "@solana-program/token": "^0.5.1", "@solana/kit": "^2.3.0", "gill": "^0.10.3", "gill-react": "^0.5.0", "react": "^19.1.0" }, "devDependencies": { "@macalinao/eslint-config": "^4.2.2", "@macalinao/eslint-config-react": "^4.0.1", "@macalinao/tsconfig": "^3.2.2", "@tanstack/react-query": "^5.85.3", "@testing-library/react": "^16.3.0", "@types/bun": "^1.2.20", "@types/react": "^19.1.11", "typescript": "^5.9.2" }, "peerDependencies": { "@tanstack/react-query": "^5", "react": "^18.0.0 || ^19.0.0", "sonner": "^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" } }