{
  "name": "@sorare/crypto",
  "description": "Crypto used in the Sorare stack",
  "author": "Sorare",
  "license": "MIT",
  "version": "3.0.1",
  "main": "lib.js",
  "dependencies": {
    "@noble/curves": "^1.0.0",
    "@noble/hashes": "~1.3.0",
    "@scure/bip32": "1.3.0",
    "@scure/bip39": "^1.2.1",
    "micro-starknet": "0.2.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.16.0",
    "@babel/core": "^7.16.5",
    "@babel/preset-env": "^7.16.5",
    "@babel/preset-typescript": "^7.16.5",
    "@types/jest": "^27.0.3",
    "@typescript-eslint/eslint-plugin": "^5.7.0",
    "@typescript-eslint/parser": "^5.7.0",
    "eslint": "^8.4.1",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-import-resolver-typescript": "^2.5.0",
    "eslint-plugin-chai-friendly": "^0.7.2",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.4.5",
    "prettier": "^2.5.1",
    "typescript": "^4.5.4"
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "es5",
    "arrowParens": "always"
  },
  "scripts": {
    "clean": "rm -rf dist/",
    "lint": "yarn run eslint src/*.ts --max-warnings 0",
    "build": "yarn run build:types && yarn run build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "babel src --out-dir dist --extensions \".js,.ts\" --source-maps inline",
    "prepublish": "yarn run build",
    "test": "jest ./src",
    "package": "yarn build && rm dist/index.test.* && yarn pack",
    "release": "yarn clean && yarn version && yarn package && npm publish *.tgz --access public"
  },
  "files": [
    "dist",
    "lib.js",
    "lib.d.ts"
  ],
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all",
    "supports bigint"
  ]
}
