{
  "name": "@moonit/sdk",
  "version": "1.5.0",
  "main": "dist/index.js",
  "types": "dist/types/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "watch": "tsc --watch",
    "test": "jest",
    "lint": "eslint 'src/**/*.{js,ts}'",
    "format": "prettier --write 'src/**/*.{js,ts,json,md}'",
    "prepublishOnly": "rm -rf dist && npm run build"
  },
  "repository": "https://github.com/gomoonit/moonit-sdk",
  "author": "https://t.me/+857VprHCIgpjZjRk",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.9",
    "@typescript-eslint/eslint-plugin": "^6.18.0",
    "@typescript-eslint/parser": "^6.18.0",
    "dotenv": "^16.4.5",
    "eslint": "8.56.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.1.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jest": "^27.6.1",
    "eslint-plugin-prettier": "^5.1.2",
    "jest": "^29.7.0",
    "prettier": "^3.3.2",
    "ts-jest": "^29.1.5",
    "typescript": "^5.5.2"
  },
  "dependencies": {
    "@coral-xyz/anchor": "0.31.1",
    "@heliofi/launchpad-common": "1.7.27",
    "@solana/spl-token": "0.3.9",
    "@solana/web3.js": "1.95.8",
    "@types/bn.js": "^5.1.5",
    "axios": "1.8.2",
    "bn.js": "^5.2.1"
  },
  "eslintConfig": {
    "root": true,
    "plugins": [
      "prettier",
      "jest",
      "import"
    ],
    "rules": {
      "prettier/prettier": "error",
      "@typescript-eslint/interface-name-prefix": "off",
      "@typescript-eslint/explicit-module-boundary-types": [
        "warn"
      ],
      "@typescript-eslint/explicit-function-return-type": [
        "warn"
      ],
      "@typescript-eslint/no-explicit-any": [
        "warn"
      ],
      "@typescript-eslint/naming-convention": [
        "off"
      ],
      "@typescript-eslint/no-duplicate-enum-values": "off",
      "no-await-in-loop": "off",
      "import/export": "off",
      "no-underscore-dangle": "off",
      "new-cap": "off",
      "no-restricted-syntax": "off",
      "no-continue": "off",
      "no-plusplus": "off",
      "no-param-reassign": [
        2,
        {
          "props": false
        }
      ],
      "no-useless-constructor": "off"
    },
    "extends": [
      "airbnb-typescript/base",
      "airbnb-typescript/base",
      "plugin:@typescript-eslint/recommended",
      "plugin:prettier/recommended"
    ],
    "parserOptions": {
      "project": "./tsconfig.json"
    },
    "ignorePatterns": []
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all"
  },
  "eslintIgnore": [
    "node_modules/",
    "dist/"
  ],
  "prettierIgnore": [
    "node_modules/",
    "dist/"
  ]
}
