package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@file-viewer/geometry-engine",
  3. "version": "2.1.8",
  4. "private": false,
  5. "type": "module",
  6. "description": "Framework-neutral geometry kernel boundary package for STEP, IGES, IFC, 3DM, and BREP preview routes in Flyfish File Viewer.",
  7. "keywords": [
  8. "file-viewer",
  9. "geometry",
  10. "cad",
  11. "bim",
  12. "step",
  13. "iges",
  14. "ifc",
  15. "3dm",
  16. "wasm",
  17. "document-preview",
  18. "file-preview",
  19. "self-hosted"
  20. ],
  21. "publishConfig": {
  22. "access": "public",
  23. "registry": "https://registry.npmjs.org/"
  24. },
  25. "author": {
  26. "name": "Wangyu",
  27. "email": "wybaby168@gmail.com"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/flyfish-dev/geometry-engine.git",
  32. "directory": "packages/renderers/geometry-engine"
  33. },
  34. "homepage": "https://doc.file-viewer.app/guide/format-fidelity",
  35. "bugs": {
  36. "url": "https://github.com/flyfish-dev/geometry-engine/issues"
  37. },
  38. "funding": {
  39. "type": "individual",
  40. "url": "https://dev.flyfish.group/shop"
  41. },
  42. "main": "./dist/index.js",
  43. "module": "./dist/index.js",
  44. "types": "./dist/index.d.ts",
  45. "exports": {
  46. ".": {
  47. "types": "./dist/index.d.ts",
  48. "import": "./dist/index.js",
  49. "default": "./dist/index.js"
  50. },
  51. "./package.json": "./package.json"
  52. },
  53. "files": [
  54. "dist",
  55. "README.md",
  56. "README.en.md",
  57. "LICENSE"
  58. ],
  59. "scripts": {
  60. "build": "tsc -b tsconfig.json",
  61. "type-check": "tsc -b tsconfig.json"
  62. },
  63. "devDependencies": {
  64. "typescript": "^6.0.3"
  65. },
  66. "license": "Apache-2.0"
  67. }