package.json 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@vue/devtools-kit",
  3. "type": "module",
  4. "version": "7.7.6",
  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.3.0",
  27. "hookable": "^5.5.3",
  28. "mitt": "^3.0.1",
  29. "perfect-debounce": "^1.0.0",
  30. "speakingurl": "^14.0.1",
  31. "superjson": "^2.2.2",
  32. "@vue/devtools-shared": "^7.7.6"
  33. },
  34. "devDependencies": {
  35. "@types/speakingurl": "^13.0.6",
  36. "vue": "^3.5.13",
  37. "vue-router": "^4.5.0"
  38. },
  39. "scripts": {
  40. "build": "tsup --clean",
  41. "prepare:type": "tsup --dts-only",
  42. "stub": "tsup --watch --onSuccess 'tsup --dts-only'"
  43. }
  44. }