package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@d8d/rencai-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": "./dist/src/index.d.ts",
  11. "import": "./dist/src/index.js",
  12. "require": "./dist/src/index.js"
  13. },
  14. "./api": {
  15. "types": "./src/api/index.ts",
  16. "import": "./src/api/index.ts",
  17. "require": "./src/api/index.ts"
  18. },
  19. "./pages/Dashboard/Dashboard": {
  20. "types": "./dist/src/pages/Dashboard/Dashboard.d.ts",
  21. "import": "./dist/src/pages/Dashboard/Dashboard.js",
  22. "require": "./dist/src/pages/Dashboard/Dashboard.js"
  23. }
  24. },
  25. "scripts": {
  26. "clean": "rimraf dist",
  27. "build": "tsc",
  28. "prebuild": "pnpm run clean",
  29. "dev": "tsc --watch",
  30. "typecheck": "tsc --noEmit",
  31. "test": "jest",
  32. "test:watch": "jest --watch",
  33. "test:coverage": "jest --coverage"
  34. },
  35. "dependencies": {
  36. "@d8d/allin-disability-module": "workspace:*",
  37. "@d8d/allin-order-module": "workspace:*",
  38. "@d8d/mini-shared-ui-components": "workspace:*",
  39. "@d8d/rencai-auth-ui": "workspace:*",
  40. "@d8d/rencai-shared-ui": "workspace:*",
  41. "@tanstack/react-query": "^5.90.12",
  42. "@tarojs/components": "4.1.4",
  43. "@tarojs/plugin-platform-weapp": "4.1.4",
  44. "@tarojs/react": "4.1.4",
  45. "@tarojs/taro": "4.1.4",
  46. "hono": "4.8.5",
  47. "react": "^18.0.0",
  48. "react-dom": "^18.0.0"
  49. },
  50. "devDependencies": {
  51. "@d8d/mini-testing-utils": "workspace:*",
  52. "@testing-library/jest-dom": "^6.8.0",
  53. "@testing-library/react": "^16.3.0",
  54. "@testing-library/user-event": "^14.6.1",
  55. "@types/jest": "^29.5.14",
  56. "@types/node": "^18",
  57. "@types/react": "^18.0.0",
  58. "@types/react-dom": "^18.0.0",
  59. "jest": "^30.2.0",
  60. "jest-environment-jsdom": "^29.7.0",
  61. "rimraf": "^6.1.2",
  62. "ts-jest": "^29.4.5",
  63. "typescript": "^5.4.5"
  64. },
  65. "files": [
  66. "src"
  67. ],
  68. "keywords": [
  69. "rencai",
  70. "talent",
  71. "dashboard",
  72. "mini",
  73. "taro",
  74. "react"
  75. ],
  76. "author": "D8D Team",
  77. "license": "MIT"
  78. }