{
  "name": "@segment/destination-subscriptions",
  "version": "3.37.0",
  "description": "Validate event payload using subscription AST",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/segmentio/action-destinations",
    "directory": "packages/destination-subscriptions"
  },
  "scripts": {
    "build": "yarn build:cjs && yarn build:esm",
    "build:cjs": "yarn tsc -p tsconfig.build.json -m commonjs --outDir dist/cjs",
    "build:esm": "yarn tsc -p tsconfig.build.json -m es2015 --outDir dist/esm",
    "clean": "tsc -b tsconfig.build.json --clean",
    "postclean": "rm -rf dist",
    "test": "jest",
    "typecheck": "tsc -p tsconfig.build.json --noEmit",
    "prepare": "yarn build",
    "size": "bash scripts/size.sh"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist",
    "package.json"
  ],
  "dependencies": {
    "@segment/fql-ts": "^1.10.1"
  },
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.2.0",
    "@types/jest": "^27.0.0",
    "jest": "^27.3.1",
    "size-limit": "^11.2.0"
  },
  "jest": {
    "preset": "ts-jest",
    "globals": {
      "ts-jest": {
        "isolatedModules": true
      }
    },
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [
      "<rootDir>/dist/"
    ]
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "size-limit": [
    {
      "path": "dist/esm/index.js",
      "import": "{ parseFql, validate }",
      "limit": "29 KB"
    },
    {
      "path": "dist/cjs/index.js",
      "limit": "29 KB"
    }
  ],
  "gitHead": "2719cf314cb81ef8375efb9a77ec85822b67a195"
}
