{
  "name": "jquery",
  "title": "jQuery",
  "description": "JavaScript library for DOM operations",
  "version": "4.0.0",
  "type": "module",
  "exports": {
    ".": {
      "node": {
        "import": "./dist-module/wrappers/jquery.node-module-wrapper.js",
        "default": "./dist/jquery.js"
      },
      "module": {
        "import": "./dist-module/jquery.module.js",
        "default": "./dist/wrappers/jquery.bundler-require-wrapper.js"
      },
      "import": "./dist-module/jquery.module.js",
      "default": "./dist/jquery.js"
    },
    "./slim": {
      "node": {
        "import": "./dist-module/wrappers/jquery.node-module-wrapper.slim.js",
        "default": "./dist/jquery.slim.js"
      },
      "module": {
        "import": "./dist-module/jquery.slim.module.js",
        "default": "./dist/wrappers/jquery.bundler-require-wrapper.slim.js"
      },
      "import": "./dist-module/jquery.slim.module.js",
      "default": "./dist/jquery.slim.js"
    },
    "./factory": {
      "node": "./dist/jquery.factory.js",
      "module": "./dist-module/jquery.factory.module.js",
      "import": "./dist-module/jquery.factory.module.js",
      "default": "./dist/jquery.factory.js"
    },
    "./factory-slim": {
      "node": "./dist/jquery.factory.slim.js",
      "module": "./dist-module/jquery.factory.slim.module.js",
      "import": "./dist-module/jquery.factory.slim.module.js",
      "default": "./dist/jquery.factory.slim.js"
    },
    "./src/*.js": "./src/*.js"
  },
  "main": "dist/jquery.js",
  "scripts": {
    "authors:check": "node --input-type=module -e \"import { checkAuthors } from './build/release/authors.js'; checkAuthors()\"",
    "authors:update": "node --input-type=module -e \"import { updateAuthors } from './build/release/authors.js'; updateAuthors()\"",
    "babel:tests": "babel test/data/core/jquery-iterability-transpiled-es6.js --out-file test/data/core/jquery-iterability-transpiled.js",
    "build": "node ./build/command.js",
    "build:all": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles()\"",
    "build:clean": "rimraf --glob dist/*.{js,map} --glob dist-module/*.{js,map}",
    "build:main": "node --input-type=module -e \"import { build } from './build/tasks/build.js'; build()\"",
    "lint:dev": "eslint --cache .",
    "lint:json": "jsonlint --quiet package.json",
    "lint": "concurrently -r \"npm:lint:dev\" \"npm:lint:json\"",
    "npmcopy": "node build/tasks/npmcopy.js",
    "prepare": "husky",
    "pretest": "npm run qunit-fixture && npm run babel:tests && npm run npmcopy",
    "qunit-fixture": "node build/tasks/qunit-fixture.js",
    "release": "release-it",
    "release:cdn": "node build/release/cdn.js",
    "release:clean": "rimraf tmp changelog.html contributors.html",
    "release:dist": "node build/release/dist.js",
    "release:verify": "node build/release/verify.js",
    "start": "node --input-type=module -e \"import { buildDefaultFiles } from './build/tasks/build.js'; buildDefaultFiles({ watch: true })\"",
    "test:bundlers": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js",
    "test:browser": "npm run pretest && npm run build:main && npm run test:unit -- -b chrome -b firefox --headless",
    "test:browserless": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js && node build/tasks/node_smoke_tests.js && node build/tasks/promises_aplus_tests.js && npm run test:unit -- -b jsdom -f module=basic",
    "test:jsdom": "npm run pretest && npm run build:main && npm run test:unit -- -b jsdom -f module=basic",
    "test:node_smoke_tests": "npm run pretest && npm run build:all && node build/tasks/node_smoke_tests.js",
    "test:promises_aplus": "npm run build:main && node build/tasks/promises_aplus_tests.js",
    "test:chrome": "npm run pretest && npm run build:main && npm run test:unit -- -v -b chrome --headless",
    "test:edge": "npm run pretest && npm run build:main && npm run test:unit -- -v -b edge --headless",
    "test:firefox": "npm run pretest && npm run build:main && npm run test:unit -- -v -b firefox --headless",
    "test:ie": "npm run pretest && npm run build:main && npm run test:unit -- -v -b ie",
    "test:safari": "npm run pretest && npm run build:main && npm run test:unit -- -b safari",
    "test:server": "jtr serve -m test/middleware-mockserver.cjs",
    "test:esm": "npm run pretest && npm run build:main && npm run test:unit -- -f esmodules --headless",
    "test:no-deprecated": "npm run pretest && npm run build -- -e deprecated && npm run test:unit -- --headless",
    "test:selector-native": "npm run pretest && npm run build -- -e selector && npm run test:unit -- --headless",
    "test:slim": "npm run pretest && npm run build -- --slim && npm run test:unit -- --headless",
    "test:unit": "jtr -m test/middleware-mockserver.cjs",
    "test": "npm run build:all && npm run lint && npm run test:browserless && npm run test:browser && npm run test:esm && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native"
  },
  "homepage": "https://jquery.com",
  "author": {
    "name": "OpenJS Foundation and other contributors",
    "url": "https://github.com/jquery/jquery/blob/4.0.0/AUTHORS.txt"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jquery/jquery.git"
  },
  "keywords": [
    "jquery",
    "javascript",
    "browser",
    "library"
  ],
  "bugs": {
    "url": "https://github.com/jquery/jquery/issues"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "7.28.3",
    "@babel/core": "7.28.5",
    "@babel/plugin-transform-for-of": "7.27.1",
    "@prantlf/jsonlint": "16.0.0",
    "@rollup/plugin-commonjs": "29.0.0",
    "@rollup/plugin-node-resolve": "16.0.3",
    "@swc/core": "1.15.2",
    "archiver": "7.0.1",
    "bootstrap": "5.3.8",
    "colors": "1.4.0",
    "commitplease": "3.2.0",
    "concurrently": "9.2.1",
    "core-js-bundle": "3.46.0",
    "cross-env": "10.1.0",
    "eslint": "8.57.0",
    "eslint-config-jquery": "3.0.2",
    "eslint-plugin-import": "2.32.0",
    "globals": "16.5.0",
    "husky": "9.1.7",
    "jquery-test-runner": "0.3.0",
    "jsdom": "27.2.0",
    "marked": "17.0.0",
    "multiparty": "4.2.3",
    "native-promise-only": "0.8.1",
    "promises-aplus-tests": "npm:@mgol/promises-aplus-tests@2.1.2-mgol.1",
    "qunit": "2.24.2",
    "raw-body": "3.0.1",
    "release-it": "19.0.6",
    "requirejs": "2.3.7",
    "rimraf": "6.1.0",
    "rollup": "4.53.2",
    "sinon": "9.2.4",
    "webpack": "5.102.1"
  },
  "commitplease": {
    "nohook": true,
    "components": [
      "Docs",
      "Tests",
      "Build",
      "Support",
      "Release",
      "Core",
      "Ajax",
      "Attributes",
      "Callbacks",
      "CSS",
      "Data",
      "Deferred",
      "Deprecated",
      "Dimensions",
      "Effects",
      "Event",
      "Manipulation",
      "Offset",
      "Queue",
      "Selector",
      "Serialize",
      "Traversing",
      "Wrap"
    ],
    "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
    "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
  }
}
