{
  "name": "@starkware-industries/starkex-js",
  "version": "0.1.0",
  "description": "`starkex-js` is a JavaScript wrapper around the [StarkEx API](https://starkware.co/starkex/api/) that can be used in both NodeJS and Browser environments.",
  "keywords": [
    "starkware",
    "starkex",
    "javascript",
    "typescript",
    "node",
    "browser",
    "sdk",
    "api",
    "blockchain",
    "etherium"
  ],
  "homepage": "https://github.com/starkware-libs/starkex-js#readme",
  "bugs": {
    "url": "https://github.com/starkware-libs/starkex-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/starkware-libs/starkex-js.git"
  },
  "license": "ISC",
  "author": "Dan Ziv",
  "main": "browser.js",
  "module": "node.js",
  "types": "types/index.d.ts",
  "directories": {
    "doc": "docs"
  },
  "files": [
    "node.js",
    "browser.js",
    "types",
    "package.json",
    "lib",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "clean": "rm -rf ./dist",
    "prebuild": "npm run clean",
    "build": "cross-env NODE_ENV=production webpack --mode=production",
    "precommit": "lint-staged",
    "start": "webpack --watch --mode development --env development",
    "typecheck": "tsc --noemit",
    "eslint": "eslint .",
    "eslint:fix": "eslint --fix .",
    "lint": "yarn run eslint && yarn run typecheck && yarn run format:check",
    "format:check": "prettier --check \"**/*.+(ts|js|json|md|html|yml)\"",
    "format": "prettier --write \"**/*.+(ts|js|json|md|html|yml)\"",
    "docs:generate": "typedoc",
    "docs:watch": "typedoc --watch",
    "release": "semantic-release",
    "release:dry": "semantic-release --no-ci --dry-run",
    "npm-publish": "bash ./scripts/npm-publish.bash",
    "test": "mocha --recursive",
    "playground:js": "node playground/server.js",
    "playground:ts": "ts-node -O '{\"module\": \"commonjs\"}' -T playground/server.ts"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.+(ts|js|jsx)": [
      "eslint --fix",
      "prettier --write --ignore-unknown"
    ],
    "*.+(json|scss|css|md)": [
      "prettier --write"
    ]
  },
  "dependencies": {
    "axios": "^0.21.1",
    "https": "^1.0.0",
    "js-logger": "^1.6.1"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.0",
    "@semantic-release/commit-analyzer": "^9.0.1",
    "@semantic-release/git": "^10.0.0",
    "@semantic-release/npm": "^9.0.1",
    "@semantic-release/release-notes-generator": "^10.0.2",
    "@trivago/prettier-plugin-sort-imports": "^2.0.4",
    "@types/axios": "^0.14.0",
    "@typescript-eslint/eslint-plugin": "^4.29.0",
    "@typescript-eslint/parser": "^4.29.0",
    "babel-eslint": "^10.1.0",
    "chai": "^4.3.6",
    "clean-webpack-plugin": "^4.0.0-alpha.0",
    "conventional-changelog-conventionalcommits": "^4.6.3",
    "copy-webpack-plugin": "^9.0.1",
    "cross-env": "^7.0.3",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-mocha-no-only": "^1.1.1",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^7.0.1",
    "lint-staged": "^11.1.1",
    "mocha": "^9.2.0",
    "prettier": "^2.3.2",
    "semantic-release": "^19.0.2",
    "terser-webpack-plugin": "^5.1.4",
    "ts-loader": "^9.2.5",
    "ts-node": "^10.9.1",
    "typedoc": "^0.22.6",
    "typedoc-plugin-markdown": "^3.11.3",
    "typescript": "^4.3.5",
    "webpack": "^5.48.0",
    "webpack-cli": "^4.7.2",
    "webpack-dev-server": "^4.0.0-beta.0",
    "webpack-merge": "^5.8.0",
    "webpack-node-externals": "^3.0.0"
  }
}
