{
  "name": "@solana-program/loader-v3",
  "version": "0.6.0",
  "description": "JavaScript client for the Solana Loader V3 program",
  "homepage": "https://github.com/solana-program/loader-v3#readme",
  "bugs": {
    "url": "https://github.com/solana-program/loader-v3/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/solana-program/loader-v3.git"
  },
  "files": [
    "./dist/src",
    "./dist/types",
    "./src/"
  ],
  "type": "commonjs",
  "sideEffects": false,
  "main": "./dist/src/index.js",
  "module": "./dist/src/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/src/index.mjs",
      "require": "./dist/src/index.js"
    }
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "devDependencies": {
    "@solana-config/oxc": "^0.1.1",
    "@solana-program/system": "^0.14.0",
    "@solana/kit": "^8.0.0",
    "@solana/kit-plugin-litesvm": "^0.18.0",
    "@solana/kit-plugin-signer": "^0.18.0",
    "@types/node": "^25",
    "oxfmt": "^0.55.0",
    "oxlint": "^1.70.0",
    "oxlint-tsgolint": "^0.23.0",
    "rimraf": "^6.1.2",
    "tsup": "^8.1.2",
    "typedoc": "^0.28.15",
    "typescript": "^5.9.3",
    "vitest": "^4.0.15"
  },
  "peerDependencies": {
    "@solana/kit": "^8.0.0"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "scripts": {
    "build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
    "build:docs": "typedoc",
    "dev": "vitest",
    "test": "vitest run",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "format": "oxfmt --check",
    "format:fix": "oxfmt"
  }
}