package.json 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@vue/devtools-kit",
  3. "type": "module",
  4. "version": "8.1.1",
  5. "author": "webfansplz",
  6. "license": "MIT",
  7. "repository": {
  8. "directory": "packages/devtools-kit",
  9. "type": "git",
  10. "url": "git+https://github.com/vuejs/devtools.git"
  11. },
  12. "exports": {
  13. ".": {
  14. "import": "./dist/index.js",
  15. "require": "./dist/index.cjs"
  16. }
  17. },
  18. "main": "./dist/index.cjs",
  19. "module": "./dist/index.js",
  20. "types": "./types.d.ts",
  21. "files": [
  22. "**.d.ts",
  23. "dist"
  24. ],
  25. "dependencies": {
  26. "birpc": "^2.6.1",
  27. "hookable": "^5.5.3",
  28. "perfect-debounce": "^2.0.0",
  29. "@vue/devtools-shared": "^8.1.1"
  30. },
  31. "devDependencies": {
  32. "@types/speakingurl": "^13.0.6",
  33. "speakingurl": "^14.0.1",
  34. "superjson": "^2.2.2",
  35. "vue": "^3.5.22",
  36. "vue-router": "^4.6.0"
  37. },
  38. "scripts": {
  39. "build": "tsdown --clean",
  40. "prepare:type": "tsdown --dts-only",
  41. "stub": "tsdown --watch --onSuccess 'tsdown --dts-only'"
  42. }
  43. }