package.json 679 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vue/devtools-shared",
  3. "type": "module",
  4. "version": "8.1.1",
  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. "devDependencies": {
  24. "@types/node": "^24.7.2",
  25. "rfdc": "^1.4.1"
  26. },
  27. "scripts": {
  28. "build": "tsdown",
  29. "prepare:type": "tsdown --dts-only",
  30. "stub": "tsdown --watch --onSuccess 'tsdown --dts-only'"
  31. }
  32. }