{
  "name": "@thoughtspot/rest-api-sdk",
  "version": "2.23.0",
  "description": "Api sdk for thoughtspot's public v2 rest api",
  "keywords": [
    "fetch",
    "typescript",
    "rest",
    "api",
    "Thoughtspot"
  ],
  "author": "ThoughtSpot",
  "email": "support@thoughtspot.com",
  "license": "ThoughtSpot Development Tools End User License Agreement",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.js"
    }
  },
  "typings": "./dist/index.d.ts",
  "scripts": {
    "build": "tsup index.ts --format esm,cjs --dts",
    "test" : "ts-mocha ./tests/ThoughtSpotRestApiTest.ts --timeout 6000",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "whatwg-fetch": "^3.0.0",
    "es6-promise": "^4.2.4",
    "url-parse": "^1.4.3"
  },
  "devDependencies": {
    "typescript": "^4.0",
    "@types/url-parse": "1.4.4",
    "@types/chai": "^4.3.5",
    "@types/mocha": "^10.0.1",
    "ts-mocha": "^10.0.0",
    "@types/expect": "^24.3.0",
    "@types/chai-as-promised": "^7.1.5",
    "chai-as-promised": "^7.1.1",
    "tsup": "^7.2.0",
    "@swc/core": "^1.3.88",
    "chai": "^4.3.7",
    "mocha": "^10.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thoughtspot/rest-api-sdk.git"
  },
  "publishConfig":{
    "registry":"https://registry.npmjs.org"
  }
}