package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "file-viewer3",
  3. "version": "2.1.8",
  4. "private": false,
  5. "type": "module",
  6. "description": "Compatibility alias package for Flyfish File Viewer Vue 3",
  7. "keywords": [
  8. "file-viewer",
  9. "document-preview",
  10. "vue3",
  11. "office-preview",
  12. "pdf-viewer",
  13. "document-viewer",
  14. "file-preview",
  15. "self-hosted"
  16. ],
  17. "publishConfig": {
  18. "access": "public",
  19. "registry": "https://registry.npmjs.org/"
  20. },
  21. "author": {
  22. "name": "Wangyu",
  23. "email": "wybaby168@gmail.com"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/flyfish-dev/file-viewer.git",
  28. "directory": "packages/compat/vue3-unscoped"
  29. },
  30. "homepage": "https://doc.file-viewer.app/",
  31. "bugs": {
  32. "url": "https://github.com/flyfish-dev/file-viewer/issues"
  33. },
  34. "funding": {
  35. "type": "individual",
  36. "url": "https://dev.flyfish.group/shop"
  37. },
  38. "main": "./dist/index.js",
  39. "module": "./dist/index.js",
  40. "types": "./dist/index.d.ts",
  41. "exports": {
  42. ".": {
  43. "types": "./dist/index.d.ts",
  44. "import": "./dist/index.js",
  45. "default": "./dist/index.js"
  46. },
  47. "./dist/file-viewer3.css": "./dist/file-viewer3.css",
  48. "./package.json": "./package.json"
  49. },
  50. "files": [
  51. "dist",
  52. "README.md",
  53. "README.en.md"
  54. ],
  55. "scripts": {
  56. "build": "node scripts/build.mjs",
  57. "type-check": "node scripts/build.mjs"
  58. },
  59. "peerDependencies": {
  60. "vue": ">=3.3 <4"
  61. },
  62. "dependencies": {
  63. "@file-viewer/vue3": "workspace:^2.1.8"
  64. },
  65. "license": "Apache-2.0"
  66. }