package.json 739 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@rolldown/pluginutils",
  3. "version": "1.0.0-beta.29",
  4. "license": "MIT",
  5. "type": "module",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/rolldown/rolldown.git",
  9. "directory": "packages/pluginutils"
  10. },
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "main": "./dist/index.cjs",
  15. "module": "./dist/index.js",
  16. "types": "./dist/index.d.ts",
  17. "exports": {
  18. ".": {
  19. "import": "./dist/index.js",
  20. "require": "./dist/index.cjs"
  21. }
  22. },
  23. "files": [
  24. "dist"
  25. ],
  26. "devDependencies": {
  27. "@types/picomatch": "^4.0.0",
  28. "picomatch": "^4.0.2",
  29. "tsdown": "0.12.9",
  30. "vitest": "^3.0.1"
  31. },
  32. "scripts": {
  33. "build": "tsdown",
  34. "test": "vitest --typecheck"
  35. }
  36. }