版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

55 lines
1.3 KiB

  1. {
  2. "name": "ast-walker-scope",
  3. "version": "0.4.1",
  4. "packageManager": "pnpm@7.30.0",
  5. "description": "Traverse Babel AST with scope information.",
  6. "license": "MIT",
  7. "files": [
  8. "dist"
  9. ],
  10. "main": "./dist/index.js",
  11. "module": "./dist/index.mjs",
  12. "types": "./dist/index.d.ts",
  13. "exports": {
  14. ".": {
  15. "types": "./dist/index.d.ts",
  16. "require": "./dist/index.js",
  17. "import": "./dist/index.mjs"
  18. },
  19. "./*": "./*"
  20. },
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "dependencies": {
  25. "@babel/parser": "^7.21.3",
  26. "@babel/types": "^7.21.3"
  27. },
  28. "devDependencies": {
  29. "@sxzz/eslint-config-prettier": "^2.4.5",
  30. "@sxzz/eslint-config-ts": "^2.4.5",
  31. "@types/node": "^18.15.3",
  32. "bumpp": "^9.0.0",
  33. "eslint": "^8.36.0",
  34. "eslint-define-config": "^1.17.0",
  35. "estree-walker": "^3.0.3",
  36. "fast-glob": "^3.2.12",
  37. "magic-string": "^0.30.0",
  38. "prettier": "^2.8.4",
  39. "tsup": "^6.7.0",
  40. "tsx": "^3.12.5",
  41. "typescript": "^5.0.2",
  42. "vite": "^4.2.0",
  43. "vitest": "^0.29.3"
  44. },
  45. "engines": {
  46. "node": ">=14.19.0"
  47. },
  48. "scripts": {
  49. "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json,.md",
  50. "lint:fix": "pnpm run lint --fix",
  51. "build": "tsup",
  52. "test": "vitest",
  53. "release": "bumpp && pnpm publish"
  54. }
  55. }