package.json 955 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@babel/plugin-syntax-import-attributes",
  3. "version": "7.26.0",
  4. "description": "Allow parsing of the module attributes in the import statement",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-plugin-syntax-import-attributes"
  9. },
  10. "license": "MIT",
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "main": "./lib/index.js",
  15. "keywords": [
  16. "babel-plugin"
  17. ],
  18. "dependencies": {
  19. "@babel/helper-plugin-utils": "^7.25.9"
  20. },
  21. "peerDependencies": {
  22. "@babel/core": "^7.0.0-0"
  23. },
  24. "devDependencies": {
  25. "@babel/core": "^7.26.0",
  26. "@babel/helper-plugin-test-runner": "^7.25.9"
  27. },
  28. "engines": {
  29. "node": ">=6.9.0"
  30. },
  31. "author": "The Babel Team (https://babel.dev/team)",
  32. "exports": {
  33. ".": {
  34. "types": "./lib/index.d.ts",
  35. "default": "./lib/index.js"
  36. },
  37. "./package.json": "./package.json"
  38. },
  39. "type": "commonjs"
  40. }