{
  "name": "@chipi-stack/types",
  "version": "14.9.0",
  "description": "Type definitions for Chipi SDK packages",
  "keywords": [
    "chipi",
    "chipi-pay",
    "chipi-stack",
    "starknet",
    "web3",
    "blockchain",
    "wallet",
    "smart-account",
    "account-abstraction",
    "stablecoins",
    "types",
    "typescript",
    "type-definitions",
    "sdk"
  ],
  "homepage": "https://docs.chipipay.com",
  "bugs": {
    "url": "https://github.com/chipi-pay/build-with-chipi/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chipi-pay/build-with-chipi.git"
  },
  "license": "MIT",
  "author": {
    "name": "Chipi Pay",
    "email": "carlos@chipipay.com",
    "url": "https://chipipay.com"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "starknet": ">=9.2.1"
  },
  "devDependencies": {
    "@types/node": "^22.15.15",
    "eslint": "^9.33.0",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.0",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup --env.NODE_ENV production",
    "build:declarations": "tsc -p tsconfig.declarations.json",
    "clean": "rimraf ./dist",
    "dev": "tsup --watch",
    "format": "prettier --write 'src/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts'",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage"
  }
}