package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@d8d/yongren-dashboard-ui",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "用人方仪表板页面包 - 提供企业仪表板页面组件",
  6. "main": "src/index.ts",
  7. "types": "src/index.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./src/index.ts",
  11. "import": "./src/index.ts",
  12. "require": "./src/index.ts"
  13. },
  14. "./api": {
  15. "types": "./src/api/index.ts",
  16. "import": "./src/api/index.ts",
  17. "require": "./src/api/index.ts"
  18. }
  19. },
  20. "scripts": {
  21. "build": "tsc",
  22. "dev": "tsc --watch",
  23. "typecheck": "tsc --noEmit",
  24. "test": "jest",
  25. "test:watch": "jest --watch",
  26. "test:coverage": "jest --coverage"
  27. },
  28. "dependencies": {
  29. "@d8d/mini-shared-ui-components": "workspace:*",
  30. "@d8d/yongren-shared-ui": "workspace:*",
  31. "@d8d/mini-enterprise-auth-ui": "workspace:*",
  32. "@d8d/server": "workspace:*",
  33. "@tarojs/components": "4.1.4",
  34. "@tarojs/react": "4.1.4",
  35. "@tarojs/taro": "4.1.4",
  36. "@tanstack/react-query": "^5.90.12",
  37. "react": "^18.0.0",
  38. "react-dom": "^18.0.0"
  39. },
  40. "devDependencies": {
  41. "@testing-library/jest-dom": "^6.8.0",
  42. "@testing-library/react": "^16.3.0",
  43. "@testing-library/user-event": "^14.6.1",
  44. "@types/jest": "^29.5.14",
  45. "@types/node": "^18",
  46. "@types/react": "^18.0.0",
  47. "@types/react-dom": "^18.0.0",
  48. "jest": "^30.2.0",
  49. "jest-environment-jsdom": "^29.7.0",
  50. "ts-jest": "^29.4.5",
  51. "typescript": "^5.4.5"
  52. },
  53. "files": [
  54. "src"
  55. ],
  56. "keywords": [
  57. "yongren",
  58. "dashboard",
  59. "mini",
  60. "taro",
  61. "react"
  62. ],
  63. "author": "D8D Team",
  64. "license": "MIT"
  65. }