package.json 1.5 KB

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