package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@emnapi/runtime",
  3. "version": "1.11.3",
  4. "description": "emnapi runtime",
  5. "main": "index.js",
  6. "module": "./dist/emnapi.esm-bundler.js",
  7. "types": "./dist/emnapi.d.ts",
  8. "sideEffects": false,
  9. "exports": {
  10. ".": {
  11. "types": {
  12. "module": "./dist/emnapi.d.ts",
  13. "import": "./dist/emnapi.d.mts",
  14. "default": "./dist/emnapi.d.ts"
  15. },
  16. "module": "./dist/emnapi.esm-bundler.js",
  17. "import": "./dist/emnapi.mjs",
  18. "default": "./index.js"
  19. },
  20. "./dist/emnapi.cjs.min": {
  21. "types": "./dist/emnapi.d.ts",
  22. "default": "./dist/emnapi.cjs.min.js"
  23. },
  24. "./dist/emnapi.min.mjs": {
  25. "types": "./dist/emnapi.d.mts",
  26. "default": "./dist/emnapi.min.mjs"
  27. }
  28. },
  29. "dependencies": {
  30. "tslib": "^2.4.0"
  31. },
  32. "scripts": {
  33. "build": "node ./script/build.js"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/toyobayashi/emnapi.git"
  38. },
  39. "author": "toyobayashi",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/toyobayashi/emnapi/issues"
  43. },
  44. "homepage": "https://github.com/toyobayashi/emnapi#readme",
  45. "publishConfig": {
  46. "access": "public"
  47. }
  48. }