{
  "name": "globulesce",
  "version": "2.0.0",
  "description": "applies a glob pattern to a set of files *after* excluding specific subfolders",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc",
    "pretest": "npm run build",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "continuous": "vitest",
    "clean": "rm -rf dist/ coverage/ *.tsbuildinfo",
    "release": "make release"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/arobson/globulesce"
  },
  "keywords": [
    "glob"
  ],
  "author": "Alex Robson",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/arobson/globulesce/issues"
  },
  "homepage": "https://github.com/arobson/globulesce",
  "devDependencies": {
    "@types/minimatch": "^5.1.2",
    "@types/node": "^22.10.5",
    "@vitest/coverage-v8": "^2.1.8",
    "standard-version": "*",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "dependencies": {
    "minimatch": "^10.0.1"
  }
}
