CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json70 linesDownload Raw Back to tinyglobby
1{2  "name": "tinyglobby",3  "version": "0.2.17",4  "description": "A fast and minimal alternative to globby and fast-glob",5  "type": "module",6  "main": "./dist/index.cjs",7  "module": "./dist/index.mjs",8  "types": "./dist/index.d.cts",9  "exports": {10    ".": {11      "import": "./dist/index.mjs",12      "require": "./dist/index.cjs"13    },14    "./package.json": "./package.json"15  },16  "sideEffects": false,17  "files": [18    "dist"19  ],20  "author": "Superchupu",21  "license": "MIT",22  "keywords": [23    "glob",24    "patterns",25    "tiny",26    "fast"27  ],28  "repository": {29    "type": "git",30    "url": "git+https://github.com/SuperchupuDev/tinyglobby.git"31  },32  "bugs": {33    "url": "https://github.com/SuperchupuDev/tinyglobby/issues"34  },35  "homepage": "https://superchupu.dev/tinyglobby",36  "funding": {37    "url": "https://github.com/sponsors/SuperchupuDev"38  },39  "dependencies": {40    "fdir": "^6.5.0",41    "picomatch": "^4.0.4"42  },43  "devDependencies": {44    "@biomejs/biome": "^2.4.16",45    "@types/node": "^25.9.1",46    "@types/picomatch": "^4.0.3",47    "fast-glob": "^3.3.3",48    "fs-fixture": "^2.14.0",49    "glob": "^13.0.6",50    "tinybench": "^6.0.2",51    "tsdown": "^0.22.1",52    "typescript": "^6.0.3"53  },54  "engines": {55    "node": ">=12.0.0"56  },57  "scripts": {58    "bench": "node benchmark/bench.ts",59    "bench:setup": "node benchmark/setup.ts",60    "build": "tsdown",61    "check": "biome check",62    "check:fix": "biome check --write --unsafe",63    "format": "biome format --write",64    "lint": "biome lint",65    "test": "node --test \"test/**/*.ts\"",66    "test:coverage": "node --test --experimental-test-coverage \"test/**/*.ts\"",67    "test:only": "node --test --test-only \"test/**/*.ts\"",68    "typecheck": "tsc --noEmit"69  }70}