{
  "version": "0.0.1aplha",
  "name": "timegraph-ts",
  "umd:name": "timegraph-ts",
  "description": "Tool for communicating with timechain and timegraph",
  "unpkg": "dist/index.min.js",
  "module": "dist/index.mjs",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist",
    "types"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "build": "rollup -c",
    "watch": "rollup -c -w",
    "prepublishOnly": "npm run build",
    "types": "tsc --noEmit",
    "test": "uvu -r tsm test",
    "generate:types": "npm run load:meta && npm run generate:defs && npm run generate:meta",
    "load:meta": "curl -s -H \"Content-Type: application/json\" -d '{\"id\":\"1\", \"jsonrpc\":\"2.0\", \"method\": \"state_getMetadata\", \"params\":[]}' http://127.0.0.1:9943 > metadata.json",
    "generate:defs": "ts-node-esm node_modules/.bin/polkadot-types-from-defs --package toolchain-cli/interfaces --input ./src/interfaces --endpoint ./metadata.json",
    "generate:meta": "ts-node-esm node_modules/.bin/polkadot-types-from-chain --endpoint ./metadata.json --output ./src/interfaces"
  },
  "keywords": [],
  "devDependencies": {
    "@polkadot/typegen": "10.1.3",
    "@rollup/plugin-node-resolve": "13.1.3",
    "@rollup/plugin-wasm": "^6.1.2",
    "rollup": "2.68.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-polyfills": "^0.2.1",
    "rollup-plugin-typescript2": "0.27.1",
    "ts-node": "10.9.1",
    "tsm": "2.3.0",
    "typescript": "4.5.5",
    "uvu": "0.5.3"
  },
  "dependencies": {
    "@polkadot/api": "^10.5.1",
    "@polkadot/rpc-provider": "^10.5.1",
    "@polkadot/types": "^10.3.2",
    "@rollup/plugin-commonjs": "^24.1.0",
    "@rollup/plugin-terser": "^0.4.1",
    "bn.js": "^5.2.1",
    "dotenv": "^16.0.3",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0",
    "rollup-plugin-polyfill-node": "^0.12.0",
    "wasm": "./src/wasm"
  }
}
