package.json 1.5 KB

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