package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "unimport",
  3. "type": "module",
  4. "version": "5.0.1",
  5. "description": "Unified utils for auto importing APIs in modules",
  6. "license": "MIT",
  7. "repository": "unjs/unimport",
  8. "sideEffects": false,
  9. "exports": {
  10. ".": "./dist/index.mjs",
  11. "./unplugin": "./dist/unplugin.mjs",
  12. "./addons": "./dist/addons.mjs",
  13. "./*": "./*"
  14. },
  15. "main": "./dist/index.mjs",
  16. "module": "./dist/index.mjs",
  17. "types": "./dist/index.d.mts",
  18. "files": [
  19. "*.d.ts",
  20. "dist"
  21. ],
  22. "engines": {
  23. "node": ">=18.12.0"
  24. },
  25. "dependencies": {
  26. "acorn": "^8.14.1",
  27. "escape-string-regexp": "^5.0.0",
  28. "estree-walker": "^3.0.3",
  29. "local-pkg": "^1.1.1",
  30. "magic-string": "^0.30.17",
  31. "mlly": "^1.7.4",
  32. "pathe": "^2.0.3",
  33. "picomatch": "^4.0.2",
  34. "pkg-types": "^2.1.0",
  35. "scule": "^1.3.0",
  36. "strip-literal": "^3.0.0",
  37. "tinyglobby": "^0.2.13",
  38. "unplugin": "^2.3.2",
  39. "unplugin-utils": "^0.2.4"
  40. },
  41. "devDependencies": {
  42. "@antfu/eslint-config": "^4.12.0",
  43. "@types/estree": "^1.0.7",
  44. "@types/node": "^22.15.3",
  45. "@types/picomatch": "^4.0.0",
  46. "@vitest/coverage-v8": "^3.1.2",
  47. "bumpp": "^10.1.0",
  48. "conventional-changelog-cli": "^5.0.0",
  49. "eslint": "^9.26.0",
  50. "h3": "^1.15.3",
  51. "jquery": "^3.7.1",
  52. "lit": "^3.3.0",
  53. "typescript": "^5.8.3",
  54. "unbuild": "^3.5.0",
  55. "vitest": "^3.1.2",
  56. "vue-tsc": "^2.2.10"
  57. },
  58. "scripts": {
  59. "build": "unbuild",
  60. "dev": "vitest dev",
  61. "lint": "eslint .",
  62. "play": "pnpm -C playground run dev",
  63. "play:build": "pnpm -C playground run build",
  64. "typecheck": "vue-tsc --noEmit",
  65. "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
  66. "release": "pnpm run test --run && bumpp -x \"pnpm run changelog\" --all && pnpm publish",
  67. "test": "vitest --coverage"
  68. }
  69. }