版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

104 righe
2.7 KiB

  1. {
  2. "name": "vite-plugin-inspect",
  3. "version": "0.7.19",
  4. "packageManager": "pnpm@8.1.1",
  5. "description": "Inspect the intermediate state of Vite plugins",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu/vite-plugin-inspect#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu/vite-plugin-inspect.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu/vite-plugin-inspect/issues"
  16. },
  17. "keywords": [
  18. "vite-plugin"
  19. ],
  20. "exports": {
  21. ".": {
  22. "types": "./dist/index.d.ts",
  23. "require": "./dist/index.cjs",
  24. "import": "./dist/index.mjs"
  25. },
  26. "./*": "./*"
  27. },
  28. "main": "dist/index.cjs",
  29. "module": "dist/index.mjs",
  30. "types": "dist/index.d.ts",
  31. "files": [
  32. "dist",
  33. "*.d.ts"
  34. ],
  35. "engines": {
  36. "node": ">=14"
  37. },
  38. "scripts": {
  39. "build": "rimraf dist && run-s build:*",
  40. "build:client": "vite build src/client",
  41. "build:js": "unbuild",
  42. "dev": "nr stub && cross-env INSPECT_DEV=true vite src/client",
  43. "dev:client": "vite build src/client --watch",
  44. "stub": "unbuild --stub",
  45. "lint": "eslint .",
  46. "prepublishOnly": "npm run build",
  47. "release": "bumpp && npm publish"
  48. },
  49. "peerDependencies": {
  50. "vite": "^3.1.0 || ^4.0.0"
  51. },
  52. "dependencies": {
  53. "@antfu/utils": "^0.7.2",
  54. "@rollup/pluginutils": "^5.0.2",
  55. "debug": "^4.3.4",
  56. "fs-extra": "^11.1.1",
  57. "kolorist": "^1.7.0",
  58. "sirv": "^2.0.2",
  59. "ufo": "^1.1.1"
  60. },
  61. "devDependencies": {
  62. "@antfu/eslint-config": "^0.38.4",
  63. "@antfu/ni": "^0.21.2",
  64. "@iconify/json": "^2.2.46",
  65. "@types/codemirror": "^5.60.7",
  66. "@types/debug": "^4.1.7",
  67. "@types/diff-match-patch": "^1.0.32",
  68. "@types/fs-extra": "^11.0.1",
  69. "@types/node": "^18.15.11",
  70. "@vitejs/plugin-vue": "^4.1.0",
  71. "@vue/compiler-sfc": "^3.2.47",
  72. "@vueuse/core": "^9.13.0",
  73. "@vueuse/router": "^9.13.0",
  74. "bumpp": "^9.1.0",
  75. "codemirror": "^5.65.8",
  76. "codemirror-theme-vars": "^0.1.2",
  77. "comlink": "^4.4.1",
  78. "cross-env": "^7.0.3",
  79. "diff-match-patch": "^1.0.5",
  80. "eslint": "^8.37.0",
  81. "esno": "^0.16.3",
  82. "fuse.js": "^6.6.2",
  83. "npm-run-all": "^4.1.5",
  84. "ohash": "^1.0.0",
  85. "prism-theme-vars": "^0.2.4",
  86. "rimraf": "^4.4.1",
  87. "splitpanes": "^3.1.5",
  88. "typescript": "^5.0.3",
  89. "unbuild": "^1.2.0",
  90. "unocss": "^0.50.6",
  91. "unplugin-auto-import": "^0.15.2",
  92. "unplugin-icons": "^0.16.1",
  93. "unplugin-vue-components": "^0.24.1",
  94. "vis-data": "7.1.6",
  95. "vis-network": "9.1.6",
  96. "vite": "^4.2.1",
  97. "vite-dev-rpc": "^0.1.1",
  98. "vite-hot-client": "^0.2.1",
  99. "vite-plugin-pages": "^0.29.0",
  100. "vue": "^3.2.47",
  101. "vue-router": "^4.1.6"
  102. }
  103. }