{
  "author": "John Van Derton",
  "name": "flysh",
  "description": "DOM Document Object Artifact Collector",
  "license": "MIT",
  "version": "1.2.2",
  "homepage": "https://github.com/johnvanderton/flysh#readme",
  "main": "./dist/cjs/index.js",
  "modules": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "engines": {
    "node": ">=22.0.0"
  },
  "directories": {
    "test": "test"
  },
  "bugs": {
    "url": "https://github.com/johnvanderton/flysh/issues"
  },
  "files": [
    "dist",
    "version"
  ],
  "scripts": {
    "deploy (all)": "npm run clean && npm run build && npm run run",
    "build": "tsc -b tsconfig.json tsconfig.esm.json tsconfig.types.json",
    "clean": "rimraf dist",
    "run": "node dist/cjs/example/index.js",
    "build doc": "npx typedoc --internalModule model --plugin typedoc-plugin-missing-exports --out docs ./src",
    "test [windows]": "mocha -r ts-node/register test/**/*.test.ts",
    "test [*nix]": "mocha -r ts-node/register test/**/*.test.ts test/**/**/*.test.ts test/src/**/*.test.ts"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/johnvanderton/flysh.git"
  },
  "dependencies": {
    "@types/node": "^25.5.0",
    "jquery": "^3.7.1",
    "jsdom": "^27.4.0",
    "typedjson": "^1.7.0"
  },
  "devDependencies": {
    "@types/chai": "^5.2.2",
    "@types/jsdom": "^28.0.1",
    "@types/mocha": "^10.0.4",
    "chai": "^5.2.1",
    "chai-as-promised": "^7.1.2",
    "mocha": "^11.7.1",
    "rimraf": "^6.0.1",
    "ts-node": "^10.5.0",
    "typedoc": "^0.28.11",
    "typedoc-plugin-missing-exports": "^4.0.0",
    "typescript": "^5.8.3"
  },
  "keywords": [
    "crawler",
    "crawler-engine",
    "DOM",
    "HTML",
    "jquery",
    "parser",
    "parser-library",
    "typescript",
    "typescript-library"
  ]
}