{
  "name": "@helios-lang/ledger",
  "version": "0.7.23",
  "description": "Latest ledger types (eg. for building transactions)",
  "main": "src/index.js",
  "types": "types/index.d.ts",
  "type": "module",
  "author": "Christian Schmitz",
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@types/node": "^20.11.24",
    "prettier": "^3.3.3",
    "typescript": "^5.6.2"
  },
  "dependencies": {
    "@helios-lang/cbor": "^0.3.1",
    "@helios-lang/codec-utils": "^0.3.4",
    "@helios-lang/crypto": "^0.2.3",
    "@helios-lang/type-utils": "^0.3.0",
    "@helios-lang/uplc": "^0.7.18"
  },
  "prettier": {
    "trailingComma": "none",
    "tabWidth": 4,
    "semi": false,
    "singleQuote": false
  },
  "scripts": {
    "build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite && pnpm run test:integ",
    "build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
    "prettify": "prettier . --write",
    "test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite && pnpm run test:integ",
    "test:integ": "pnpm --prefix ./test/all-pure run test",
    "test:pretty": "prettier . --check",
    "test:suite": "node --test --experimental-test-coverage",
    "test:types": "pnpm run build:types"
  }
}