package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "tinyglobby",
  3. "version": "0.2.12",
  4. "description": "A fast and minimal alternative to globby and fast-glob",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "exports": {
  9. "import": "./dist/index.mjs",
  10. "require": "./dist/index.js"
  11. },
  12. "sideEffects": false,
  13. "files": [
  14. "dist"
  15. ],
  16. "author": "Superchupu",
  17. "license": "MIT",
  18. "keywords": [
  19. "glob",
  20. "patterns",
  21. "fast",
  22. "implementation"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/SuperchupuDev/tinyglobby.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/SuperchupuDev/tinyglobby/issues"
  30. },
  31. "homepage": "https://github.com/SuperchupuDev/tinyglobby#readme",
  32. "funding": {
  33. "url": "https://github.com/sponsors/SuperchupuDev"
  34. },
  35. "dependencies": {
  36. "fdir": "^6.4.3",
  37. "picomatch": "^4.0.2"
  38. },
  39. "devDependencies": {
  40. "@biomejs/biome": "^1.9.4",
  41. "@types/node": "^22.13.4",
  42. "@types/picomatch": "^3.0.2",
  43. "fs-fixture": "^2.7.0",
  44. "tsup": "^8.3.6",
  45. "typescript": "^5.7.3"
  46. },
  47. "engines": {
  48. "node": ">=12.0.0"
  49. },
  50. "publishConfig": {
  51. "access": "public",
  52. "provenance": true
  53. },
  54. "scripts": {
  55. "build": "tsup",
  56. "check": "biome check",
  57. "format": "biome format --write",
  58. "lint": "biome lint",
  59. "lint:fix": "biome lint --fix --unsafe",
  60. "test": "node --experimental-transform-types --test",
  61. "test:coverage": "node --experimental-transform-types --test --experimental-test-coverage",
  62. "test:only": "node --experimental-transform-types --test --test-only",
  63. "typecheck": "tsc --noEmit"
  64. }
  65. }