123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- {
- "name": "cheerio",
- "version": "1.0.0",
- "description": "The fast, flexible & elegant library for parsing and manipulating HTML and XML.",
- "keywords": [
- "htmlparser",
- "jquery",
- "selector",
- "scraper",
- "parser",
- "dom",
- "xml",
- "html"
- ],
- "homepage": "https://cheerio.js.org/",
- "bugs": {
- "url": "https://github.com/cheeriojs/cheerio/issues"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/cheeriojs/cheerio.git"
- },
- "funding": "https://github.com/cheeriojs/cheerio?sponsor=1",
- "license": "MIT",
- "author": "Matt Mueller <mattmuelle@gmail.com>",
- "maintainers": [
- "Felix Boehm <me@feedic.com>"
- ],
- "type": "module",
- "exports": {
- ".": {
- "browser": {
- "types": "./dist/browser/index.d.ts",
- "default": "./dist/browser/index.js"
- },
- "import": {
- "types": "./dist/esm/index.d.ts",
- "default": "./dist/esm/index.js"
- },
- "require": {
- "types": "./dist/commonjs/index.d.ts",
- "default": "./dist/commonjs/index.js"
- }
- },
- "./slim": {
- "browser": {
- "types": "./dist/browser/slim.d.ts",
- "default": "./dist/browser/slim.js"
- },
- "import": {
- "types": "./dist/esm/slim.d.ts",
- "default": "./dist/esm/slim.js"
- },
- "require": {
- "types": "./dist/commonjs/slim.d.ts",
- "default": "./dist/commonjs/slim.js"
- }
- },
- "./utils": {
- "browser": {
- "types": "./dist/browser/utils.d.ts",
- "default": "./dist/browser/utils.js"
- },
- "import": {
- "types": "./dist/esm/utils.d.ts",
- "default": "./dist/esm/utils.js"
- },
- "require": {
- "types": "./dist/commonjs/utils.d.ts",
- "default": "./dist/commonjs/utils.js"
- }
- },
- "./package.json": "./package.json"
- },
- "main": "./dist/commonjs/index.js",
- "module": "./dist/esm/index.js",
- "types": "./dist/commonjs/index.d.ts",
- "files": [
- "dist",
- "src"
- ],
- "scripts": {
- "benchmark": "node --import=tsx benchmark/benchmark.ts",
- "build": "tshy",
- "format": "npm run format:es && npm run format:prettier",
- "format:es": "npm run lint:es -- --fix",
- "format:prettier": "npm run format:prettier:raw -- --write",
- "format:prettier:raw": "prettier \"**/*.{{m,c,}{j,t}s{x,},md{x,},json,y{a,}ml}\" --ignore-path .gitignore",
- "lint": "npm run lint:es && npm run lint:prettier && npm run lint:ts",
- "lint:es": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
- "lint:prettier": "npm run format:prettier:raw -- --check",
- "lint:ts": "tsc --noEmit",
- "prepare": "husky",
- "prepublishOnly": "npm run build",
- "test": "npm run lint && npm run test:vi",
- "test:vi": "vitest run",
- "update-sponsors": "tsx scripts/fetch-sponsors.mts"
- },
- "lint-staged": {
- "*.js": [
- "prettier --write",
- "npm run lint:es -- --fix"
- ],
- "*.{json,md,ts,yml}": [
- "prettier --write"
- ]
- },
- "prettier": {
- "plugins": [
- "./node_modules/prettier-plugin-jsdoc/dist/index.js"
- ],
- "proseWrap": "always",
- "singleQuote": true,
- "tabWidth": 2,
- "tsdoc": true
- },
- "dependencies": {
- "cheerio-select": "^2.1.0",
- "dom-serializer": "^2.0.0",
- "domhandler": "^5.0.3",
- "domutils": "^3.1.0",
- "encoding-sniffer": "^0.2.0",
- "htmlparser2": "^9.1.0",
- "parse5": "^7.1.2",
- "parse5-htmlparser2-tree-adapter": "^7.0.0",
- "parse5-parser-stream": "^7.1.2",
- "undici": "^6.19.5",
- "whatwg-mimetype": "^4.0.0"
- },
- "devDependencies": {
- "@imgix/js-core": "^3.8.0",
- "@octokit/graphql": "^8.1.1",
- "@types/jsdom": "^21.1.7",
- "@types/node": "^22.1.0",
- "@types/whatwg-mimetype": "^3.0.2",
- "@typescript-eslint/eslint-plugin": "^8.0.1",
- "@typescript-eslint/parser": "^8.0.1",
- "@vitest/coverage-v8": "^2.0.5",
- "eslint": "^8.57.0",
- "eslint-config-prettier": "^9.1.0",
- "eslint-plugin-expect-type": "^0.4.0",
- "eslint-plugin-jsdoc": "^50.0.0",
- "eslint-plugin-n": "^16.6.2",
- "eslint-plugin-unicorn": "^55.0.0",
- "eslint-plugin-vitest": "^0.5.4",
- "husky": "^9.1.4",
- "jquery": "^3.7.1",
- "jsdom": "^24.1.1",
- "lint-staged": "^15.2.8",
- "prettier": "^3.3.3",
- "prettier-plugin-jsdoc": "^1.3.0",
- "tinybench": "^2.9.0",
- "tshy": "^3.0.2",
- "tsx": "^4.17.0",
- "typescript": "^5.5.4",
- "vitest": "^2.0.5"
- },
- "engines": {
- "node": ">=18.17"
- },
- "tshy": {
- "esmDialects": [
- "browser"
- ],
- "exports": {
- ".": "./src/index.ts",
- "./slim": "./src/slim.ts",
- "./utils": "./src/utils.ts",
- "./package.json": "./package.json"
- },
- "exclude": [
- "**/*.spec.ts",
- "**/__fixtures__/*",
- "**/__tests__/*",
- "**/__snapshots__/*"
- ]
- }
- }
|