package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "vite-plugin-vue-inspector",
  3. "version": "5.3.1",
  4. "description": "jump to local IDE source code while click the element of browser automatically.",
  5. "author": "webfansplz",
  6. "license": "MIT",
  7. "homepage": "https://github.com/webfansplz/vite-plugin-vue-inspector#readme",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/webfansplz/vite-plugin-vue-inspector.git"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/webfansplz/vite-plugin-vue-inspector/issues"
  14. },
  15. "keywords": [
  16. "vue",
  17. "vite",
  18. "vscode",
  19. "vite-plugin",
  20. "inspector",
  21. "debug"
  22. ],
  23. "exports": {
  24. ".": {
  25. "types": "./dist/index.d.ts",
  26. "require": "./dist/index.cjs",
  27. "import": "./dist/index.mjs"
  28. },
  29. "./src/*": "./src/*"
  30. },
  31. "main": "./dist/index.cjs",
  32. "module": "./dist/index.mjs",
  33. "types": "./dist/index.d.ts",
  34. "files": [
  35. "dist",
  36. "src/load.js",
  37. "src/Overlay.vue"
  38. ],
  39. "peerDependencies": {
  40. "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0"
  41. },
  42. "dependencies": {
  43. "@babel/core": "^7.23.0",
  44. "@babel/plugin-proposal-decorators": "^7.23.0",
  45. "@babel/plugin-syntax-import-attributes": "^7.22.5",
  46. "@babel/plugin-syntax-import-meta": "^7.10.4",
  47. "@babel/plugin-transform-typescript": "^7.22.15",
  48. "@vue/babel-plugin-jsx": "^1.1.5",
  49. "@vue/compiler-dom": "^3.3.4",
  50. "kolorist": "^1.8.0",
  51. "magic-string": "^0.30.4"
  52. },
  53. "devDependencies": {
  54. "@types/babel__core": "^7.20.2",
  55. "unplugin": "^1.5.0"
  56. },
  57. "scripts": {
  58. "lint": "eslint --fix --ext .js,.ts,.vue .",
  59. "dev": "tsup --watch",
  60. "build": "tsup"
  61. }
  62. }