package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@univerjs/sheets-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/core": "0.5.5",
  47. "@univerjs/drawing": "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. "@univerjs/sheets": "0.5.5"
  55. },
  56. "scripts": {
  57. "test": "vitest run",
  58. "test:watch": "vitest",
  59. "coverage": "vitest run --coverage",
  60. "lint:types": "tsc --noEmit",
  61. "build": "univer-cli build"
  62. },
  63. "module": "./lib/es/index.js"
  64. }