package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@univerjs/sheets-sort",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "A library for sorting data in Univer Sheet",
  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. "./locale/*": {
  33. "import": "./lib/es/locale/*.js",
  34. "require": "./lib/cjs/locale/*.js",
  35. "types": "./lib/types/locale/*.d.ts"
  36. },
  37. "./facade": {
  38. "import": "./lib/es/facade.js",
  39. "require": "./lib/cjs/facade.js",
  40. "types": "./lib/types/facade/index.d.ts"
  41. },
  42. "./lib/*": "./lib/*"
  43. },
  44. "main": "./lib/es/index.js",
  45. "types": "./lib/types/index.d.ts",
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "directories": {
  50. "lib": "lib"
  51. },
  52. "files": [
  53. "lib"
  54. ],
  55. "dependencies": {
  56. "@univerjs/core": "0.5.5",
  57. "@univerjs/engine-formula": "0.5.5",
  58. "@univerjs/sheets": "0.5.5"
  59. },
  60. "devDependencies": {
  61. "typescript": "^5.7.2",
  62. "vite": "^6.0.7",
  63. "vitest": "^2.1.8",
  64. "@univerjs-infra/shared": "0.5.5"
  65. },
  66. "scripts": {
  67. "test": "vitest run",
  68. "test:watch": "vitest",
  69. "coverage": "vitest run --coverage",
  70. "lint:types": "tsc --noEmit",
  71. "build": "univer-cli build"
  72. },
  73. "module": "./lib/es/index.js"
  74. }