package.json 975 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@rolldown/pluginutils",
  3. "version": "1.0.1",
  4. "description": "Plugin utilities for Rolldown",
  5. "keywords": [
  6. "filter",
  7. "plugin",
  8. "rolldown"
  9. ],
  10. "homepage": "https://github.com/rolldown/plugins/tree/main/packages/pluginutils#readme",
  11. "bugs": {
  12. "url": "https://github.com/rolldown/plugins/issues"
  13. },
  14. "license": "MIT",
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/rolldown/plugins.git",
  18. "directory": "packages/pluginutils"
  19. },
  20. "files": [
  21. "dist"
  22. ],
  23. "type": "module",
  24. "exports": {
  25. ".": "./dist/index.mjs",
  26. "./filter": "./dist/filter/index.mjs",
  27. "./package.json": "./package.json"
  28. },
  29. "devDependencies": {
  30. "@types/picomatch": "^4.0.3",
  31. "picomatch": "^4.0.4",
  32. "typescript": "^5.9.3"
  33. },
  34. "scripts": {
  35. "dev": "tsdown --watch",
  36. "build": "tsdown",
  37. "test": "vitest --project pluginutils",
  38. "test:types": "vitest --project pluginutils --typecheck.only"
  39. }
  40. }