package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "name": "vite-plugin-inspect",
  3. "type": "module",
  4. "version": "11.3.3",
  5. "description": "Inspect the intermediate state of Vite plugins",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu/vite-plugin-inspect#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu/vite-plugin-inspect.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu/vite-plugin-inspect/issues"
  16. },
  17. "keywords": [
  18. "vite-plugin"
  19. ],
  20. "exports": {
  21. ".": "./dist/index.mjs",
  22. "./nuxt": "./dist/nuxt.mjs",
  23. "./*": "./*"
  24. },
  25. "main": "dist/index.mjs",
  26. "module": "dist/index.mjs",
  27. "types": "dist/index.d.mts",
  28. "files": [
  29. "dist"
  30. ],
  31. "engines": {
  32. "node": ">=14"
  33. },
  34. "peerDependencies": {
  35. "vite": "^6.0.0 || ^7.0.0-0"
  36. },
  37. "peerDependenciesMeta": {
  38. "@nuxt/kit": {
  39. "optional": true
  40. }
  41. },
  42. "dependencies": {
  43. "ansis": "^4.1.0",
  44. "debug": "^4.4.1",
  45. "error-stack-parser-es": "^1.0.5",
  46. "ohash": "^2.0.11",
  47. "open": "^10.2.0",
  48. "perfect-debounce": "^2.0.0",
  49. "sirv": "^3.0.1",
  50. "unplugin-utils": "^0.3.0",
  51. "vite-dev-rpc": "^1.1.0"
  52. },
  53. "devDependencies": {
  54. "@antfu/eslint-config": "^5.2.1",
  55. "@antfu/ni": "^25.0.0",
  56. "@antfu/utils": "^9.2.0",
  57. "@iconify/json": "^2.2.377",
  58. "@nuxt/kit": "^4.0.3",
  59. "@types/codemirror": "^5.60.16",
  60. "@types/debug": "^4.1.12",
  61. "@types/node": "^24.3.0",
  62. "@unocss/eslint-config": "^66.4.2",
  63. "@unocss/eslint-plugin": "^66.4.2",
  64. "@vitejs/plugin-vue": "^6.0.1",
  65. "@vue/compiler-sfc": "^3.5.19",
  66. "@vueuse/core": "^13.7.0",
  67. "@vueuse/router": "^13.7.0",
  68. "bumpp": "^10.2.3",
  69. "codemirror": "^5.65.16",
  70. "codemirror-theme-vars": "^0.1.2",
  71. "comlink": "^4.4.2",
  72. "diff-match-patch-es": "^1.0.1",
  73. "echarts": "^5.6.0",
  74. "eslint": "^9.34.0",
  75. "floating-vue": "^5.2.2",
  76. "fuse.js": "^7.1.0",
  77. "lint-staged": "^16.1.5",
  78. "pathe": "^2.0.3",
  79. "pinia": "^3.0.3",
  80. "rimraf": "^6.0.1",
  81. "simple-git-hooks": "^2.13.1",
  82. "splitpanes": "^4.0.4",
  83. "typescript": "^5.9.2",
  84. "unbuild": "^3.6.1",
  85. "unocss": "^66.4.2",
  86. "unplugin-auto-import": "^20.0.0",
  87. "unplugin-vue-components": "^29.0.0",
  88. "unplugin-vue-router": "^0.15.0",
  89. "vis-data": "^8.0.1",
  90. "vis-network": "^10.0.1",
  91. "vite": "npm:rolldown-vite@6.3.0-beta.5",
  92. "vite-hot-client": "^2.1.0",
  93. "vue": "^3.5.19",
  94. "vue-echarts": "^7.0.3",
  95. "vue-router": "^4.5.1",
  96. "vue-tsc": "^3.0.6"
  97. },
  98. "resolutions": {
  99. "vite": "catalog:dev"
  100. },
  101. "simple-git-hooks": {
  102. "pre-commit": "npx lint-staged"
  103. },
  104. "lint-staged": {
  105. "*.{js,ts,vue,md}": [
  106. "eslint --cache --fix"
  107. ]
  108. },
  109. "scripts": {
  110. "build": "rimraf dist && pnpm run --sequential /^build:/",
  111. "build:client": "vite build src/client",
  112. "build:js": "unbuild",
  113. "dev": "nr stub && INSPECT_DEV=true vite src/client",
  114. "dev:client": "vite build src/client --watch",
  115. "stub": "unbuild --stub",
  116. "lint": "eslint .",
  117. "typecheck": "vue-tsc --noEmit",
  118. "release": "bumpp && pnpm publish"
  119. }
  120. }