版博士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.
 
 
 
 

72 righe
1.8 KiB

  1. {
  2. "version": "1.3.1",
  3. "name": "vite-plugin-use-modules",
  4. "description": "自动加载 modules",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.mjs",
  7. "types": "./dist/index.d.ts",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/dishait/vite-plugin-use-modules.git"
  11. },
  12. "exports": {
  13. "./*": "./*",
  14. ".": {
  15. "require": "./dist/index.js",
  16. "import": "./dist/index.mjs",
  17. "types": "./dist/index.d.ts"
  18. }
  19. },
  20. "files": [
  21. "dist",
  22. "client.d.ts"
  23. ],
  24. "scripts": {
  25. "build": "tsup",
  26. "test": "vitest",
  27. "test:watch": "vitest --watch",
  28. "coverage": "vitest --coverage",
  29. "dev": "pnpm run build --watch",
  30. "init:info": "plop --plopfile scripts/init.js",
  31. "release": "bumpp --commit --push --tag && npm publish",
  32. "play": "pnpm -C examples/vite run dev",
  33. "play:open": "pnpm -C examples/vite run dev:open",
  34. "play:host": "pnpm -C examples/vite run dev:host",
  35. "play:build": "pnpm -C examples/vite run build",
  36. "play:preview": "pnpm -C examples/vite run preview",
  37. "play:preview:open": "pnpm -C examples/vite run preview:open",
  38. "play:preview:host": "pnpm -C examples/vite run preview:host"
  39. },
  40. "keywords": [
  41. "vite",
  42. "plugin",
  43. "template"
  44. ],
  45. "author": {
  46. "name": "markthree",
  47. "url": "https://github.com/markthree"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/dishait/vite-plugin-use-modules/issues"
  51. },
  52. "license": "MIT",
  53. "devDependencies": {
  54. "@types/node": "^17.0.45",
  55. "bumpp": "^7.2.0",
  56. "c8": "^7.11.3",
  57. "esno": "^0.14.1",
  58. "plop": "^3.1.1",
  59. "tsup": "^5.12.9",
  60. "typescript": "^4.7.4",
  61. "vite": "^2.9.14",
  62. "vitest": "^0.1.27",
  63. "vue": "^3.2.37"
  64. },
  65. "peerDependencies": {
  66. "vue": ">=3.2.31"
  67. },
  68. "dependencies": {
  69. "local-pkg": "^0.4.2"
  70. }
  71. }