{
  "name": "ari",
  "version": "2.480.0",
  "config": {
    "registry": "atlassian"
  },
  "description": "The official ARI TypeScript library, for creating, parsing and working with ARIs ✨",
  "main": "./index.js",
  "module": "./index.mjs",
  "types": "./index.d.ts",
  "typings": "./index.d.ts",
  "license": "UNLICENSED",
  "repository": {
    "directory": "src",
    "type": "git",
    "url": "git@bitbucket.org:atlassian/ari-typescript.git"
  },
  "homepage": "https://bitbucket.org/atlassian/ari-typescript/src/main/README.md",
  "files": [
    "**/**/*.js",
    "**/**/*.mjs",
    "**/**/*.d.ts",
    "package.json",
    "README.md"
  ],
  "devDependencies": {
    "@microsoft/api-extractor": "^7.38.3",
    "@sucrase/jest-plugin": "^2.2.0",
    "@types/fs-extra": "^9.0.13",
    "@types/jest": "^27.0.2",
    "@types/js-yaml": "^4.0.4",
    "@types/lodash.flatten": "^4.4.6",
    "@types/lodash.snakecase": "^4.1.9",
    "@typescript-eslint/eslint-plugin": "^5.2.0",
    "@typescript-eslint/parser": "^5.2.0",
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-filenames": "^1.3.2",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-prettier": "^4.0.0",
    "fs-extra": "^10.0.0",
    "jest": "^27.3.1",
    "js-yaml": "^4.1.0",
    "lodash.flatten": "^4.4.0",
    "lodash.snakecase": "^4.1.1",
    "prettier": "^2.4.1",
    "simple-statistics": "^7.7.0",
    "ts-morph": "^12.0.0",
    "ts-node": "^10.4.0",
    "ts-node-dev": "^1.1.8",
    "tsup": "^8.0.1",
    "typescript": "^4.4.4"
  },
  "scripts": {
    "codegen:clear": "yarn ts-node scripts/pre-codegen.ts",
    "codegen": "yarn codegen:clear && yarn ts-node scripts/codegen/generators && yarn lint:fix",
    "lint": "eslint --ext .ts,.tsx,.json ./",
    "lint:fix": "eslint --fix --ext .ts,.tsx,.json ./",
    "build": "echo 'building' && rm -rf dist/ && node --max_old_space_size=8192 ./node_modules/.bin/tsup && yarn ts-node scripts/post-build.ts",
    "test": "yarn jest",
    "test:perf": "yarn jest -c jest.config.perf.ts",
    "publish:npm": "yarn build && cd dist/ && npm publish",
    "publish:local": "cd dist/ && yalc publish"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "require": "./index.js",
      "import": "./index.mjs",
      "types": "./index.d.ts"
    },
    "./any-ari": {
      "require": "./any-ari.js",
      "import": "./any-ari.mjs",
      "types": "./any-ari.d.ts"
    },
    "./ati": {
      "require": "./ati.js",
      "import": "./ati.mjs",
      "types": "./ati.d.ts"
    },
    "./arm": {
      "require": "./arm.js",
      "import": "./arm.mjs",
      "types": "./arm.d.ts"
    },
    "./errors": {
      "require": "./errors.js",
      "import": "./errors.mjs",
      "types": "./errors.d.ts"
    },
    "./*": {
      "require": "./*/index.js",
      "import": "./*/index.mjs",
      "types": "./*/index.d.ts"
    }
  }
}