{
  "name": "@typemove/aptos",
  "version": "1.13.4",
  "license": "Apache-2.0",
  "type": "module",
  "exports": {
    ".": "./dist/esm/index.js",
    "./codegen": "./dist/esm/codegen/index.js",
    "./builtin": "./dist/esm/builtin/index.js",
    "./builtin/0x1": "./dist/esm/builtin/0x1.js",
    "./builtin/0x3": "./dist/esm/builtin/0x3.js",
    "./builtin/0x4": "./dist/esm/builtin/0x4.js"
  },
  "bin": {
    "typemove-aptos": "./dist/esm/codegen/run.js"
  },
  "files": [
    "**/package.json",
    "{dist,src}",
    "!**/*.test.{js,ts}",
    "!{dist,src}/*/tests"
  ],
  "types": "./dist/esm/index.d.ts",
  "dependencies": {
    "@aptos-labs/ts-sdk": "~6.0.0",
    "chalk": "^5.3.0",
    "commander": "^14.0.0",
    "prettier": "^3.2.4",
    "radash": "^12.0.0",
    "@typemove/move": "1.13.4"
  },
  "url": "https://github.com/sentioxyz/typemove",
  "scripts": {
    "_gen": "pnpm gen:test && tsx src/codegen/run.ts -t src/builtin -a src/abis",
    "build": "pnpm gen && tsc",
    "build:all": "pnpm --filter=$(node -p \"require('./package.json').name\")... build",
    "gen": "pnpm _gen 0x1 && pnpm _gen 0x3 && pnpm _gen 0x4",
    "gen:test": "tsx src/codegen/run.ts -t src/tests/types src/tests/abis",
    "gen-with-address": "tsx src/codegen/run.ts -t ./src/tests/types 0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af",
    "test": "glob -c 'tsx --test' '**/*.test.ts'"
  }
}