{
  "name": "daytona-wildberries-typescript-sdk",
  "version": "3.15.0",
  "description": "Full-featured TypeScript SDK providing type-safe access to all Wildberries marketplace API methods",
  "keywords": [
    "wildberries",
    "api",
    "sdk",
    "typescript",
    "marketplace",
    "e-commerce",
    "russia",
    "type-safe"
  ],
  "author": "Wildberries API TypeScript SDK Contributors",
  "license": "SEE LICENSE IN LICENSE",
  "type": "module",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.cjs",
      "types": "./dist/esm/index.d.ts"
    },
    "./finances": {
      "import": "./dist/esm/modules/finances/index.js",
      "require": "./dist/cjs/modules/finances/index.cjs",
      "types": "./dist/esm/modules/finances/index.d.ts"
    },
    "./analytics": {
      "import": "./dist/esm/modules/analytics/index.js",
      "require": "./dist/cjs/modules/analytics/index.cjs",
      "types": "./dist/esm/modules/analytics/index.d.ts"
    },
    "./communications": {
      "import": "./dist/esm/modules/communications/index.js",
      "require": "./dist/cjs/modules/communications/index.cjs",
      "types": "./dist/esm/modules/communications/index.d.ts"
    },
    "./reports": {
      "import": "./dist/esm/modules/reports/index.js",
      "require": "./dist/cjs/modules/reports/index.cjs",
      "types": "./dist/esm/modules/reports/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/salacoste/daytona-wildberries-typescript-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/salacoste/daytona-wildberries-typescript-sdk/issues"
  },
  "homepage": "https://github.com/salacoste/daytona-wildberries-typescript-sdk#readme",
  "scripts": {
    "build": "vite build",
    "prepublishOnly": "npm run build",
    "prepack": "npm run build",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:tdd": "vitest run --config vitest.tdd.config.ts",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "lint": "eslint src tests",
    "lint:fix": "eslint src tests --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "clean": "rm -rf dist",
    "docs": "typedoc",
    "docs:api": "typedoc",
    "docs:api:watch": "typedoc --watch",
    "docs:validate": "typedoc --emit none",
    "docs:serve": "npx http-server docs/api -p 8080 -o",
    "docs:dev": "vitepress dev docs",
    "docs:build": "npm run docs:api && cp docs/api-templates/index.md docs/api/index.md && vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "validate:links": "node scripts/validate-links.js",
    "validate:examples": "tsx scripts/validate-doc-examples.ts",
    "validate:shards": "node scripts/validate_shards.cjs",
    "validate:all": "npm run validate:links && npm run validate:examples",
    "generate": "tsx tools/generate-sdk.ts",
    "generate:types": "tsx tools/generate-sdk.ts --types-only",
    "generate:general": "tsx tools/generate-sdk.ts wildberries_api_doc/01-general.yaml",
    "example:product-workflow": "tsx examples/complete-product-workflow.ts",
    "example:fbs-fulfillment": "tsx examples/orders-fbs-fulfillment.ts",
    "example:fbw-fulfillment": "tsx examples/orders-fbw-fulfillment.ts"
  },
  "devDependencies": {
    "@eslint/js": "^9.38.0",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^24.8.1",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "@vitest/coverage-v8": "^1.2.2",
    "axios-mock-adapter": "^1.22.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.2",
    "happy-dom": "^20.5.0",
    "js-yaml": "^4.1.0",
    "jsdom": "^28.0.0",
    "markdown-link-check": "^3.14.1",
    "msw": "^2.12.9",
    "prettier": "^3.2.4",
    "tsx": "^4.20.6",
    "typedoc": "^0.28.14",
    "typedoc-plugin-markdown": "^4.9.0",
    "typedoc-plugin-missing-exports": "^4.1.2",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.46.1",
    "vite": "^5.0.12",
    "vite-plugin-dts": "^4.5.4",
    "vitepress": "^1.6.4",
    "vitest": "^1.2.2"
  },
  "dependencies": {
    "axios": "^1.6.7",
    "dotenv": "^17.2.3"
  }
}
