{
  "name": "@acala-network/chopsticks-executor",
  "description": "Chopsticks executor",
  "version": "1.5.0",
  "license": "Apache-2.0",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/AcalaNetwork/chopsticks"
  },
  "scripts": {
    "clean": "rm -rf pkg dist",
    "wasm": "yarn clean && wasm-pack build --target web --out-dir pkg && scripts/pack-wasm.cjs",
    "build": "yarn wasm && ./package.sh"
  },
  "dependencies": {
    "@polkadot/util": "^14.0.1",
    "@polkadot/wasm-util": "^7.4.1"
  },
  "devDependencies": {
    "@swc/cli": "0.7.10",
    "@swc/core": "^1.12.14",
    "fflate": "^0.8.2"
  },
  "files": [
    "dist/esm/**",
    "dist/cjs/**"
  ],
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "module": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/esm/index.js"
    }
  }
}