package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@file-viewer/jquery",
  3. "version": "2.1.8",
  4. "private": false,
  5. "type": "module",
  6. "description": "Standard jQuery component package for Flyfish File Viewer",
  7. "keywords": [
  8. "file-viewer",
  9. "document-preview",
  10. "jquery",
  11. "native-viewer",
  12. "office-preview",
  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-jquery.git",
  28. "directory": "packages/components/jquery"
  29. },
  30. "homepage": "https://doc.file-viewer.app/",
  31. "bugs": {
  32. "url": "https://github.com/flyfish-dev/file-viewer-jquery/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. "./package.json": "./package.json"
  48. },
  49. "files": [
  50. "dist",
  51. "README.md",
  52. "README.en.md"
  53. ],
  54. "scripts": {
  55. "build": "tsc -b tsconfig.json",
  56. "type-check": "tsc -b tsconfig.json"
  57. },
  58. "peerDependencies": {
  59. "jquery": ">=3 <5"
  60. },
  61. "dependencies": {
  62. "@file-viewer/core": "workspace:^2.1.8"
  63. },
  64. "devDependencies": {
  65. "@types/jquery": "^4.0.1",
  66. "typescript": "^6.0.3"
  67. },
  68. "license": "Apache-2.0"
  69. }