{
  "name": "@servicenow/sdk",
  "version": "4.7.1",
  "description": "ServiceNow SDK",
  "license": "MIT",
  "homepage": "https://www.servicenow.com/docs/csh?topicname=servicenow-sdk-landing&version=latest",
  "keywords": [
    "ServiceNow",
    "Fluent"
  ],
  "bin": {
    "now-sdk": "./bin/index.js",
    "now-sdk-debug": "./bin/debug.js",
    "@servicenow/sdk": "./bin/index.js"
  },
  "exports": {
    "./api/browser": {
      "types": "./dist/api/index.d.ts",
      "default": "./dist/web/index.js"
    },
    "./lsp": {
      "types": "./dist/lsp/index.d.ts",
      "default": "./dist/lsp/index.js"
    },
    "./api": {
      "browser": "./dist/web/index.js",
      "types": "./dist/api/index.d.ts",
      "default": "./dist/api/index.js"
    },
    "./core": "./src/core/index.ts",
    "./automation": "./src/automation/index.ts",
    "./global": "./dist/global/index.js"
  },
  "files": [
    "dist",
    "src/core/index.ts",
    "src/automation/index.ts",
    "docs"
  ],
  "dependencies": {
    "@servicenow/sdk-api": "4.7.1",
    "@servicenow/sdk-cli": "4.7.1",
    "@servicenow/sdk-core": "4.7.1"
  },
  "optionalDependencies": {
    "undici": "6.25.0"
  },
  "devDependencies": {
    "@servicenow/sdk-aiaf-plugin": "1.0.0-aiaffluent.29",
    "@servicenow/sdk-nowassist-skill-plugin": "1.0.16-ext-nask-plugins.36",
    "fast-glob": "3.3.3",
    "@geut/browser-node-core": "2.0.13",
    "@geut/esbuild-plugin-brode": "2.0.14",
    "@zenfs/core": "0.15.0",
    "path": "0.12.7",
    "lodash": "4.18.1",
    "@types/lodash": "4.17.23"
  },
  "engines": {
    "node": ">=20.18.0",
    "pnpm": ">=10.8.0",
    "ide_api": "^1.0"
  },
  "scripts": {
    "build": "tsc -b && pnpm run bundle",
    "build:production": "tsc -b && pnpm run bundle:production",
    "bundle": "tsx esbuild.ts && tsx esbuild.web.ts",
    "bundle:production": "tsx esbuild.ts --production && tsx esbuild.web.ts --production",
    "watch": "tsc -b -w",
    "clean": "tsc -b --clean"
  }
}