package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "tinyglobby",
  3. "version": "0.2.15",
  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. "fast",
  26. "implementation"
  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.3"
  42. },
  43. "devDependencies": {
  44. "@biomejs/biome": "^2.2.3",
  45. "@types/node": "^24.3.1",
  46. "@types/picomatch": "^4.0.2",
  47. "fast-glob": "^3.3.3",
  48. "fs-fixture": "^2.8.1",
  49. "glob": "^11.0.3",
  50. "tinybench": "^5.0.1",
  51. "tsdown": "^0.14.2",
  52. "typescript": "^5.9.2"
  53. },
  54. "engines": {
  55. "node": ">=12.0.0"
  56. },
  57. "publishConfig": {
  58. "provenance": true
  59. },
  60. "scripts": {
  61. "bench": "node benchmark/bench.ts",
  62. "bench:setup": "node benchmark/setup.ts",
  63. "build": "tsdown",
  64. "check": "biome check",
  65. "check:fix": "biome check --write --unsafe",
  66. "format": "biome format --write",
  67. "lint": "biome lint",
  68. "test": "node --test \"test/**/*.ts\"",
  69. "test:coverage": "node --test --experimental-test-coverage \"test/**/*.ts\"",
  70. "test:only": "node --test --test-only \"test/**/*.ts\"",
  71. "typecheck": "tsc --noEmit"
  72. }
  73. }