package.json 975 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@swc/helpers",
  3. "version": "0.4.11",
  4. "description": "External helpers for the swc project.",
  5. "esnext": "src/index.mjs",
  6. "module": "src/index.mjs",
  7. "main": "lib/index.js",
  8. "sideEffects": false,
  9. "scripts": {
  10. "build": "swc -V && bash ./scripts/build.sh",
  11. "prepublishOnly": "bash ./scripts/build.sh"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/swc-project/swc.git"
  16. },
  17. "publishConfig": {
  18. "registry": "https://registry.npmjs.org/",
  19. "access": "public"
  20. },
  21. "keywords": [
  22. "swc",
  23. "helpers"
  24. ],
  25. "author": "강동윤 <kdy1997.dev@gmail.com>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/swc-project/swc/issues"
  29. },
  30. "homepage": "https://swc.rs",
  31. "devDependencies": {
  32. "@swc/cli": "^0.1.36",
  33. "@swc/core": "^1.2.196"
  34. },
  35. "dependencies": {
  36. "tslib": "^2.4.0"
  37. }
  38. }