package.json 697 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@vue/devtools-shared",
  3. "type": "module",
  4. "version": "7.7.6",
  5. "author": "webfansplz",
  6. "license": "MIT",
  7. "repository": {
  8. "directory": "packages/shared",
  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. "files": [
  21. "dist"
  22. ],
  23. "dependencies": {
  24. "rfdc": "^1.4.1"
  25. },
  26. "devDependencies": {
  27. "@types/node": "^22.13.14"
  28. },
  29. "scripts": {
  30. "build": "tsup",
  31. "prepare:type": "tsup --dts-only",
  32. "stub": "tsup --watch --onSuccess 'tsup --dts-only'"
  33. }
  34. }