package.json 811 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@esbuild-plugins/node-modules-polyfill",
  3. "version": "0.1.4",
  4. "description": "",
  5. "main": "dist/index.js",
  6. "module": "esm/index.js",
  7. "types": "dist/index.d.ts",
  8. "repository": "https://github.com/remorses/esbuild-plugins.git",
  9. "scripts": {
  10. "build": "tsc && tsc -m es6 --outDir esm",
  11. "watch": "tsc -w"
  12. },
  13. "files": [
  14. "dist",
  15. "src",
  16. "esm"
  17. ],
  18. "keywords": [],
  19. "author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
  20. "license": "ISC",
  21. "devDependencies": {
  22. "safe-buffer": "^5.2.1",
  23. "test-support": "*"
  24. },
  25. "dependencies": {
  26. "escape-string-regexp": "^4.0.0",
  27. "rollup-plugin-node-polyfills": "^0.2.1"
  28. },
  29. "peerDependencies": {
  30. "esbuild": "*"
  31. }
  32. }