{
  "name": "quoti-sdk",
  "version": "0.3.6",
  "description": "",
  "main": "src/index.js",
  "module": "dist/index.min.mjs",
  "unpkg": "dist/index.umd.min.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/index.min.mjs",
    "dist/**/*.d.ts"
  ],
  "scripts": {
    "prepack": "npm run build",
    "clean": "rm -fr dist",
    "build": "npm run clean && tsc --project tsconfig.json && npm run bundle:esm && npm run bundle:esm:min && npm run bundle:umd && npm run bundle:umd:min && npm run build:stats",
    "build:stats": "(echo '\\033[35;3m' ; cd dist && ls -lh index*js index*gz | tail -n +2 | awk '{print $5,$9}')",
    "bundle:esm": "rollup dist/index.js --file dist/index.mjs --format esm",
    "bundle:esm:min": "terser --ecma 6 --compress --mangle --module -o dist/index.min.mjs -- dist/index.mjs && gzip -9 -c dist/index.min.mjs > dist/index.min.mjs.gz",
    "bundle:umd": "rollup dist/index.js --file dist/index.umd.js --format umd --name QuotiSDK",
    "bundle:umd:min": "terser --ecma 6 --compress --mangle -o dist/index.umd.min.js -- dist/index.umd.js && gzip -9 -c dist/index.umd.min.js > dist/index.umd.min.js.gz",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:run": "vitest run"
  },
  "author": "Beyond Co.",
  "license": "ISC",
  "devDependencies": {
    "@vitest/ui": "^0.23.4",
    "openapi-typescript-codegen": "^0.23.0",
    "rollup": "^2.76.0",
    "terser": "^5.14.1",
    "typescript": "^4.7.4",
    "vite": "^3.1.3",
    "vitest": "^0.23.4"
  },
  "peerDependencies": {
    "axios": "^0.27.2",
    "form-data": "^4.0.0"
  }
}
