{
  "name": "@thallo.io/thallo-exchange-sdk",
  "version": "1.3.0",
  "description": "The Thallo Exchange NPM SDK allows developers to easily set up and integrate with the Thallo Api",
  "main": "lib/index.js",
  "types": "./lib/types/index.d.ts",
  "exports": {
    "types": "./lib/types/index.d.ts",
    "import": "./lib/esm/index.js",
    "require": "./lib/cjs/index.js"
  },
  "scripts": {
    "build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && npm run common:package:json && npm run esm:package:json",
    "build:clean": "rm -rf lib && npm run build",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint . --ext ts",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "test": "jest --config jestconfig.json",
    "common:package:json": "cp package.json ./lib/cjs && cd ./lib/cjs && npm pkg delete type scripts devDependencies dependencies peerDependencies exports types && cd -",
    "esm:package:json": "cp package.json ./lib/esm && cd ./lib/esm && npm pkg delete scripts devDependencies dependencies peerDependencies exports types && npm pkg set type=module && cd -"
  },
  "files": [
    "lib/**/*"
  ],
  "keywords": [
    "API",
    "Thallo",
    "POC"
  ],
  "author": "Thallo",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/thallo-io/thallo-exchange-npm-sdk"
  },
  "devDependencies": {
    "@types/jest": "^29.5.2",
    "@types/lodash": "^4.14.195",
    "@types/node": "^20.3.0",
    "@typescript-eslint/eslint-plugin": "^5.59.9",
    "@typescript-eslint/parser": "^5.59.9",
    "eslint": "^8.42.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-unused-imports": "^2.0.0",
    "jest": "^29.5.0",
    "prettier": "^2.8.8",
    "source-map-support": "^0.5.21",
    "ts-jest": "^29.1.0",
    "ts-loader": "^9.4.3",
    "ts-node": "^10.9.1",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "axios": "^1.4.0"
  }
}
