{
  "name": "@macalinao/token-utils",
  "version": "0.2.0",
  "description": "Token utility functions for Solana development",
  "license": "Apache-2.0",
  "author": "Ian Macalinao <me@ianm.com>",
  "homepage": "https://grill.ianm.com",
  "keywords": [
    "solana",
    "token",
    "utilities",
    "dnum",
    "formatting",
    "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/token-utils"
  },
  "scripts": {
    "build": "tsc",
    "lint": "eslint .",
    "clean": "rm -fr dist/ node_modules/ tsconfig.tsbuildinfo .eslintcache",
    "test": "bun test"
  },
  "dependencies": {
    "dnum": "^2.17.0"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "=7.0.3",
    "@macalinao/tsconfig": "^3.2.5",
    "@solana/kit": "^6.9.0",
    "@types/bun": "^1.3.14",
    "typescript": "^6.0.3",
    "eslint": "=9.39.2"
  },
  "peerDependencies": {
    "@solana/kit": "^6"
  },
  "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"
  }
}
