{
  "name": "micro-starknet",
  "version": "0.2.3",
  "description": "Minimal implementation of Starknet cryptography including Pedersen and Stark Curve",
  "files": [
    "lib",
    "index.ts"
  ],
  "main": "lib/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/esm/index.js",
      "default": "./lib/index.js"
    }
  },
  "browser": {
    "crypto": false
  },
  "dependencies": {
    "@noble/curves": "~1.0.0",
    "@noble/hashes": "~1.3.0"
  },
  "devDependencies": {
    "@scure/base": "~1.1.1",
    "@scure/bip32": "^1.3.0",
    "@scure/bip39": "^1.2.0",
    "fast-check": "3.7.0",
    "micro-bmark": "0.3.1",
    "micro-should": "0.4.0",
    "prettier": "2.8.4",
    "typescript": "5.0.2"
  },
  "author": "Paul Miller (https://paulmillr.com)",
  "license": "MIT",
  "homepage": "https://github.com/paulmillr/micro-starknet",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/micro-starknet.git"
  },
  "scripts": {
    "build": "tsc && tsc -p tsconfig.esm.json",
    "bench": "cd test/benchmark; npm i; node index.js",
    "lint": "prettier --check index.ts",
    "test": "node test/index.test.js"
  },
  "keywords": [
    "starknet",
    "stark curve",
    "pedersen hash",
    "stark key",
    "starkware",
    "starkex"
  ],
  "funding": [
    {
      "type": "individual",
      "url": "https://paulmillr.com/funding/"
    }
  ]
}
