{
  "name": "vasil-cardano",
  "version": "0.3.5",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "custom_modules"
  ],
  "description": "Lucid is a library, which allows you to create Cardano transactions and off-chain code for your Plutus contracts in JavaScript and Node.js.",
  "repository": "https://github.com/Berry-Pool/lucid",
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "start": "tsdx watch --format esm",
    "build": "tsdx build --format esm",
    "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
    "lint": "tsdx lint src test",
    "docs": "typedoc --entryPoints ./custom_modules/cardano-multiplatform-lib-browser/cardano_multiplatform_lib.d.ts --entryPoints ./custom_modules/cardano-multiplatform-lib-nodejs/cardano_multiplatform_lib.d.ts --entryPoints src --entryPointStrategy expand --exclude '**/core/**' --exclude '**/examples/**' --plugin ./node_modules/typedoc-theme-category/dist/index.js --theme category",
    "release": "npm run test && npm run build && node scripts/prerelease.js && npm publish && node scripts/postrelease.js",
    "package": "node scripts/prerelease.js && npm pack && node scripts/postrelease.js && mkdir -p lucid-cardano && rm -rf lucid-cardano/* && tar zxvf lucid-cardano-*.tgz -C lucid-cardano && mv lucid-cardano/package/* lucid-cardano/ && rm -r lucid-cardano/package && rm lucid-cardano-*.tgz"
  },
  "peerDependencies": {},
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint",
      "pre-push": "npm run test && npm run build"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "author": "Alessandro Konrad",
  "devDependencies": {
    "husky": "^7.0.4",
    "jest": "^27.4.4",
    "ts-jest": "^27.1.4",
    "tsdx": "^0.14.1",
    "tslib": "^2.3.1",
    "typedoc-theme-category": "^1.0.7",
    "typescript": "^4.6.3",
    "typedoc": "^0.22.15"
  },
  "dependencies": {
    "node-fetch": "^3.2.3"
  }
}