{
  "name": "@slice-so/core",
  "version": "0.1.3",
  "description": "Slice core library",
  "scripts": {
    "build": "bun run build:prebuild && bun run build.ts",
    "build:prebuild": "rm -rf dist && bun run build:types",
    "build:types": "tsc --project ./tsconfig.json",
    "npm-publish": "bun run build && bun run publish:pre && cd ../.. && bunx changeset publish && cd packages/core && bun run publish:post",
    "publish:pre": "bun run ../../scripts/prePublish.ts -- core",
    "publish:post": "bun run ../../scripts/postPublish.ts -- core",
    "publish:local": "bun run build && bun run publish:pre && npm publish && bun run publish:post"
  },
  "author": "slice-so",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/core/src/index.d.ts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/core/src/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "/dist"
  ],
  "peerDependencies": {
    "@apollo/client": "^3.8.10",
    "@wagmi/core": "^2.3.1",
    "ethers": "^5.7.2",
    "viem": "^2.4.0"
  },
  "dependencies": {
    "@slice-so/abi": "^0.0.2"
  },
  "devDependencies": {
    "@ethersproject/abi": "^5.7.0",
    "@ethersproject/providers": "^5.7.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/slice-so/react-ui"
  },
  "homepage": "https://slice.so",
  "keywords": [
    "react",
    "slice",
    "onchain",
    "ethereum",
    "commerce",
    "e-commerce",
    "wallet",
    "web3",
    "dapp",
    "dappkit"
  ]
}