{
  "name": "@codama/nodes-from-anchor",
  "version": "1.4.1",
  "description": "Node specifications and helpers for the Codama standard",
  "exports": {
    "types": "./dist/types/index.d.ts",
    "react-native": "./dist/index.react-native.mjs",
    "browser": {
      "import": "./dist/index.browser.mjs",
      "require": "./dist/index.browser.cjs"
    },
    "node": {
      "import": "./dist/index.node.mjs",
      "require": "./dist/index.node.cjs"
    }
  },
  "browser": {
    "./dist/index.node.cjs": "./dist/index.browser.cjs",
    "./dist/index.node.mjs": "./dist/index.browser.mjs"
  },
  "main": "./dist/index.node.cjs",
  "module": "./dist/index.node.mjs",
  "react-native": "./dist/index.react-native.mjs",
  "types": "./dist/types/index.d.ts",
  "type": "commonjs",
  "files": [
    "./dist/types",
    "./dist/index.*"
  ],
  "sideEffects": false,
  "keywords": [
    "solana",
    "framework",
    "standard",
    "specifications"
  ],
  "dependencies": {
    "@solana/codecs": "^5.3.0",
    "@noble/hashes": "^2.0.1",
    "@codama/errors": "1.6.0",
    "@codama/nodes": "1.6.0",
    "@codama/visitors": "1.6.0"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/codama-idl/codama"
  },
  "bugs": {
    "url": "http://github.com/codama-idl/codama/issues"
  },
  "browserslist": [
    "supports bigint and not dead",
    "maintained node versions"
  ],
  "scripts": {
    "build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
    "dev": "vitest --project node",
    "lint": "eslint . && prettier --check .",
    "lint:fix": "eslint --fix . && prettier --write .",
    "test": "pnpm test:types && pnpm test:treeshakability && pnpm test:unit",
    "test:treeshakability": "for file in dist/index.*.mjs; do agadoo $file; done",
    "test:types": "tsc --noEmit",
    "test:unit": "vitest run"
  }
}