package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@univerjs/uniscript",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "UI component library for building exceptional Univer.",
  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. "univer"
  22. ],
  23. "exports": {
  24. ".": {
  25. "import": "./lib/es/index.js",
  26. "require": "./lib/cjs/index.js",
  27. "types": "./lib/types/index.d.ts"
  28. },
  29. "./*": {
  30. "import": "./lib/es/*",
  31. "require": "./lib/cjs/*",
  32. "types": "./lib/types/index.d.ts"
  33. },
  34. "./locale/*": {
  35. "import": "./lib/es/locale/*.js",
  36. "require": "./lib/cjs/locale/*.js",
  37. "types": "./lib/types/locale/*.d.ts"
  38. },
  39. "./lib/*": "./lib/*"
  40. },
  41. "main": "./lib/es/index.js",
  42. "types": "./lib/types/index.d.ts",
  43. "publishConfig": {
  44. "access": "public"
  45. },
  46. "directories": {
  47. "lib": "lib"
  48. },
  49. "files": [
  50. "lib"
  51. ],
  52. "peerDependencies": {
  53. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  54. "rxjs": ">=7.0.0"
  55. },
  56. "dependencies": {
  57. "monaco-editor": "0.52.2",
  58. "@univerjs/core": "0.5.5",
  59. "@univerjs/sheets": "0.5.5",
  60. "@univerjs/design": "0.5.5",
  61. "@univerjs/sheets-ui": "0.5.5",
  62. "@univerjs/ui": "0.5.5"
  63. },
  64. "devDependencies": {
  65. "less": "^4.2.1",
  66. "postcss": "^8.4.49",
  67. "rxjs": "^7.8.1",
  68. "tailwindcss": "^3.4.17",
  69. "typescript": "^5.7.2",
  70. "vite": "^6.0.7",
  71. "vitest": "^2.1.8",
  72. "@univerjs-infra/shared": "0.5.5"
  73. },
  74. "scripts": {
  75. "test": "vitest run",
  76. "test:watch": "vitest",
  77. "coverage": "vitest run --coverage",
  78. "lint:types": "tsc --noEmit",
  79. "build": "univer-cli build"
  80. },
  81. "module": "./lib/es/index.js"
  82. }