{
  "name": "@fatsolutions/tongo-sdk",
  "version": "1.5.0",
  "description": "An SDK for interacting with Tongo contracts",
  "homepage": "https://github.com/fatlabsxyz/tongo",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/fatlabsxyz/tongo.git",
    "directory": "packages/tongo-sdk"
  },
  "author": {
    "name": "Fat Solutions",
    "email": "root@fatlabs.xyz",
    "url": "https://fatsolutions.xyz/"
  },
  "keywords": [
    "starknet",
    "tongo",
    "confidential",
    "erc20",
    "payments"
  ],
  "files": [
    "dist/*",
    "src",
    "package.json",
    "!**/*.tsbuildinfo"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "license": "Apache-2.0",
  "dependencies": {
    "@fatsolutions/she": "0.4.0",
    "@noble/ciphers": "1.3.0",
    "@noble/hashes": "1.8.0",
    "@scure/base": "1.2.5",
    "@scure/starknet": "1.1.0",
    "starknet": "9.4.2"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "devDependencies": {
    "starknet-devnet": "0.6.0",
    "tsx": "^4.20.5"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc -p ./tsconfig.json --outDir dist",
    "update-abi": "echo -n 'export const tongoAbi = ' > ./src/tongo.abi.ts && jq --indent 4 -j '.abi' < ../contracts/target/dev/tongo_Tongo.contract_class.json >> ./src/tongo.abi.ts && echo ' as const;' >> ./src/tongo.abi.ts",
    "test": ". ./test/envvars && vitest run --testTimeout 0 --config vitest.config.ts --passWithNoTests",
    "test:unit": ". ./test/envvars && vitest --project unit -c ./vitest.config.ts",
    "test:integration": ". ./test/envvars && vitest --project integration -c ./vitest.config.ts",
    "lint": "eslint --config ./eslint.config.js \"{src,test}/**/*.{js,ts,json}\"",
    "lint:fix": "eslint --config ./eslint.config.js \"{src,test,tests}/**/*.{js,ts,json}\" --fix",
    "format": "prettier --config ./prettier.config.js --check \"{src,test}/**/*.{js,ts,json}\"",
    "format:fix": "prettier --config ./prettier.config.js --write \"{src,test,tests}/**/*.{js,ts,json}\"",
    "devnet:state": ". ./test/envvars && starknet-devnet --dump-path ./test/state/devnet.state",
    "aux": "tsx ./aux.ts"
  }
}