{
  "name": "@ikas/api-client",
  "version": "2.0.2",
  "description": "ikas public node api client for store apps and private apps",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "packageManager": "pnpm@10.5.2",
  "files": [
    "dist"
  ],
  "author": "ikas",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "ikas",
    "graphql",
    "Public API"
  ],
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@graphql-codegen/cli": "^7.1.3",
    "@graphql-codegen/typescript": "^6.0.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.0.0",
    "graphql": "^16.9.0",
    "jest": "^30.4.2",
    "prettier": "^3.8.4",
    "ts-jest": "^29.4.11",
    "typescript": "^6.0.3"
  },
  "scripts": {
    "build:dev": "graphql-codegen --config codegen/admin_dev.yml && npx tsc",
    "build:prod": "graphql-codegen --config codegen/admin_prod.yml && npx tsc",
    "codegen": "graphql-codegen --config codegen-dynamic/codegen.ts",
    "test": "jest",
    "test:unit": "jest --testPathPattern \"test/(helpers|globals|api)\"",
    "test:e2e": "jest --testPathPattern \"test/e2e\"",
    "test:coverage": "jest --coverage"
  },
  "prettier": {
    "semi": true,
    "trailingComma": "all",
    "singleQuote": true,
    "printWidth": 200,
    "tabWidth": 2,
    "bracketSpacing": true
  }
}
