package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@univerjs/docs-drawing",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "",
  6. "author": "DreamNum <developer@univer.ai>",
  7. "license": "Apache-2.0",
  8. "funding": {
  9. "type": "opencollective",
  10. "url": "https://opencollective.com/univer"
  11. },
  12. "homepage": "https://univer.ai",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/dream-num/univer"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/dream-num/univer/issues"
  19. },
  20. "keywords": [],
  21. "exports": {
  22. ".": {
  23. "import": "./lib/es/index.js",
  24. "require": "./lib/cjs/index.js",
  25. "types": "./lib/types/index.d.ts"
  26. },
  27. "./*": {
  28. "import": "./lib/es/*",
  29. "require": "./lib/cjs/*",
  30. "types": "./lib/types/index.d.ts"
  31. },
  32. "./lib/*": "./lib/*"
  33. },
  34. "main": "./lib/es/index.js",
  35. "types": "./lib/types/index.d.ts",
  36. "publishConfig": {
  37. "access": "public"
  38. },
  39. "directories": {
  40. "lib": "lib"
  41. },
  42. "files": [
  43. "lib"
  44. ],
  45. "dependencies": {
  46. "@univerjs/drawing": "0.5.5",
  47. "@univerjs/core": "0.5.5"
  48. },
  49. "devDependencies": {
  50. "typescript": "^5.7.2",
  51. "vite": "^6.0.7",
  52. "vitest": "^2.1.8",
  53. "@univerjs-infra/shared": "0.5.5"
  54. },
  55. "scripts": {
  56. "test": "vitest run",
  57. "test:watch": "vitest",
  58. "coverage": "vitest run --coverage",
  59. "lint:types": "tsc --noEmit",
  60. "build": "univer-cli build"
  61. },
  62. "module": "./lib/es/index.js"
  63. }