package.json 686 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vue/devtools-api",
  3. "type": "module",
  4. "version": "7.7.7",
  5. "author": "webfansplz",
  6. "license": "MIT",
  7. "repository": {
  8. "directory": "packages/devtools-api",
  9. "type": "git",
  10. "url": "git+https://github.com/vuejs/devtools.git"
  11. },
  12. "sideEffects": false,
  13. "exports": {
  14. ".": {
  15. "import": "./dist/index.js",
  16. "require": "./dist/index.cjs"
  17. }
  18. },
  19. "main": "./dist/index.cjs",
  20. "module": "./dist/index.js",
  21. "files": [
  22. "dist"
  23. ],
  24. "dependencies": {
  25. "@vue/devtools-kit": "^7.7.7"
  26. },
  27. "scripts": {
  28. "build": "tsup --clean",
  29. "prepare:type": "tsup --dts-only",
  30. "stub": "tsup --watch --onSuccess 'tsup --dts-only'"
  31. }
  32. }