package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "tinyglobby",
  3. "version": "0.2.10",
  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. "dependencies": {
  33. "fdir": "^6.4.2",
  34. "picomatch": "^4.0.2"
  35. },
  36. "devDependencies": {
  37. "@biomejs/biome": "^1.9.4",
  38. "@types/node": "^22.7.9",
  39. "@types/picomatch": "^3.0.1",
  40. "fs-fixture": "^2.5.0",
  41. "tsup": "^8.3.4",
  42. "typescript": "^5.6.3"
  43. },
  44. "engines": {
  45. "node": ">=12.0.0"
  46. },
  47. "publishConfig": {
  48. "access": "public",
  49. "provenance": true
  50. },
  51. "scripts": {
  52. "build": "tsup",
  53. "check": "biome check",
  54. "format": "biome format --write",
  55. "lint": "biome lint",
  56. "lint:fix": "biome lint --fix --unsafe",
  57. "test": "node --experimental-transform-types --test test/**/*.test.ts",
  58. "test:coverage": "node --experimental-transform-types --test --experimental-test-coverage test/**/*.test.ts",
  59. "test:only": "node --experimental-transform-types --test --test-only test/**/*.test.ts",
  60. "typecheck": "tsc --noEmit"
  61. }
  62. }