{
  "name": "@debridge-finance/solana-transaction-parser",
  "description": "Tool for parsing arbitrary Solana transactions with IDL/custom parsers",
  "version": "3.3.1",
  "author": "deBridge",
  "license": "LGPL-2.1",
  "homepage": "https://debridge.finance",
  "repository": {
    "type": "git",
    "url": "github:debridge-finance/solana-tx-parser-public"
  },
  "keywords": [
    "solana",
    "deBridge",
    "blockchain"
  ],
  "files": [
    "cli/**",
    "dist/**",
    "docs/**",
    "LICENSE",
    "README.md"
  ],
  "module": "./dist/esm/index.js",
  "main": "./dist/cjs/index.js",
  "types": "./dist/cjs/index.d.ts",
  "scripts": {
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:node": "tsc -p tsconfig.cjs.json",
    "build": "npm run build:esm && npm run build:node",
    "prepublishOnly": "npm run build",
    "test:ix": "mocha -r ts-node/register -b -t 200000 ./tests/parseIx.test.ts",
    "test:tx": "mocha -r ts-node/register -t 200000 ./tests/parseTransaction.test.ts",
    "test:tx:dlnsrc": "mocha -r ts-node/register -t 200000 tests/parseDlnSrcTransaction.test.ts",
    "test:tx:dlndst": "mocha -r ts-node/register -t 200000 tests/parseDlnDstTransaction.test.ts",
    "test:tx:native": "mocha -r ts-node/register -t 200000 tests/parseNativeTransaction.test.ts",
    "test:err": "mocha -r ts-node/register -t 200000 ./tests/error.parsing.test.ts",
    "test:cb": "mocha -r ts-node/register -t 200000 ./tests/parseComputeBudget.test.ts",
    "test:sysTx": "mocha -r ts-node/register -b -t 200000 ./tests/parseSystemTransaction.test.ts",
    "test:custom": "mocha -r ts-node/register -b -t 200000 ./tests/customParser.test.ts",
    "test:parseLogs": "mocha -r ts-node/register -b -t 200000 ./tests/parseLogs.test.ts",
    "prettify": "prettier --write ./**/*.ts",
    "lint": "eslint --config .eslintrc \"./{src,tests}/**/*.{js,ts}\"",
    "lint:fix": "eslint --config .eslintrc \"./{src,tests}/**/*.{js,ts}\" --fix",
    "lint:dump": "eslint --print-config ./.eslintrc.json"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^22.0.2",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "@rollup/plugin-typescript": "^8.3.4",
    "@types/bn.js": "^5.1.0",
    "@types/chai": "^4.3.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^17.0.2",
    "chai": "^4.3.4",
    "eslint": "^8.5.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^16.1.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-prettier": "^5.0.0",
    "mocha": "^10.0.0",
    "rollup": "^2.77.2",
    "rollup-plugin-terser": "^7.0.2",
    "snake-case": "^3.0.4",
    "ts-node": "^10.9.1",
    "tslib": "^2.6.1",
    "typedoc": "^0.24.8",
    "typedoc-plugin-markdown": "^3.15.4"
  },
  "dependencies": {
    "@coral-xyz/anchor": "^0.30.1",
    "@coral-xyz/spl-token": "^0.30.1",
    "@noble/hashes": "^1.6.1",
    "@solana/codecs": "2.0.0",
    "@solana/spl-token": "^0.4.9",
    "@solana/spl-type-length-value": "0.2.0",
    "@solana/web3.js": "^1.98.0",
    "buffer": "6.0.3"
  },
  "peerDependencies": {
    "@solana/buffer-layout": "^4.0.0",
    "@solana/buffer-layout-utils": "^0.2.0"
  }
}
