package.json 758 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@babel/helper-string-parser",
  3. "version": "7.25.7",
  4. "description": "A utility package to parse strings",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/babel/babel.git",
  8. "directory": "packages/babel-helper-string-parser"
  9. },
  10. "homepage": "https://babel.dev/docs/en/next/babel-helper-string-parser",
  11. "license": "MIT",
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "main": "./lib/index.js",
  16. "devDependencies": {
  17. "charcodes": "^0.2.0"
  18. },
  19. "engines": {
  20. "node": ">=6.9.0"
  21. },
  22. "author": "The Babel Team (https://babel.dev/team)",
  23. "exports": {
  24. ".": {
  25. "types": "./lib/index.d.ts",
  26. "default": "./lib/index.js"
  27. },
  28. "./package.json": "./package.json"
  29. },
  30. "type": "commonjs"
  31. }