package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@d8d/yongren-shared-ui",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "用人模块共享UI组件包 - 提供yongren模块专用的共享UI组件",
  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. },
  15. "scripts": {
  16. "build": "tsc",
  17. "dev": "tsc --watch",
  18. "typecheck": "tsc --noEmit",
  19. "test": "jest",
  20. "test:watch": "jest --watch",
  21. "test:coverage": "jest --coverage"
  22. },
  23. "dependencies": {
  24. "@d8d/mini-shared-ui-components": "workspace:*",
  25. "@tarojs/components": "4.1.4",
  26. "@tarojs/plugin-platform-weapp": "4.1.4",
  27. "@tarojs/react": "4.1.4",
  28. "@tarojs/taro": "4.1.4",
  29. "react": "^18.0.0",
  30. "react-dom": "^18.0.0"
  31. },
  32. "devDependencies": {
  33. "@testing-library/jest-dom": "^6.8.0",
  34. "@testing-library/react": "^16.3.0",
  35. "@testing-library/user-event": "^14.6.1",
  36. "@types/jest": "^29.5.14",
  37. "@types/node": "^18",
  38. "@types/react": "^18.0.0",
  39. "@types/react-dom": "^18.0.0",
  40. "jest": "^30.2.0",
  41. "jest-environment-jsdom": "^29.7.0",
  42. "ts-jest": "^29.4.5",
  43. "typescript": "^5.4.5"
  44. },
  45. "files": [
  46. "src"
  47. ],
  48. "keywords": [
  49. "yongren",
  50. "shared",
  51. "ui",
  52. "components",
  53. "mini",
  54. "taro",
  55. "react"
  56. ],
  57. "author": "D8D Team",
  58. "license": "MIT"
  59. }