package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@rc-component/context",
  3. "version": "1.4.0",
  4. "description": "React way perf context selector",
  5. "keywords": [
  6. "react",
  7. "react-component",
  8. "context"
  9. ],
  10. "homepage": "http://github.com/react-component/context",
  11. "bugs": {
  12. "url": "http://github.com/react-component/context/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:react-component/context.git"
  17. },
  18. "license": "MIT",
  19. "author": "",
  20. "main": "./lib/index",
  21. "module": "./es/index",
  22. "files": [
  23. "lib",
  24. "es"
  25. ],
  26. "scripts": {
  27. "build": "dumi build",
  28. "compile": "father build",
  29. "coverage": "father test --coverage",
  30. "lint": "eslint src/ docs/ --ext .tsx,.ts,.jsx,.js",
  31. "now-build": "npm run build",
  32. "prepublishOnly": "npm run compile && np --yolo --no-publish",
  33. "start": "dumi dev",
  34. "test": "rc-test",
  35. "tsc": "tsc --noEmit"
  36. },
  37. "dependencies": {
  38. "@babel/runtime": "^7.10.1",
  39. "rc-util": "^5.27.0"
  40. },
  41. "devDependencies": {
  42. "@rc-component/father-plugin": "^1.0.0",
  43. "@types/jest": "^24.0.18",
  44. "@types/react": "^18.0.0",
  45. "@types/react-dom": "^18.0.0",
  46. "@types/warning": "^3.0.0",
  47. "@umijs/fabric": "^3.0.0",
  48. "cross-env": "^7.0.3",
  49. "dumi": "^2.0.15",
  50. "eslint": "^7.1.0",
  51. "father": "^4.0.0",
  52. "np": "^5.0.3",
  53. "rc-test": "^7.0.14",
  54. "react": "^18.0.0",
  55. "react-dom": "^18.0.0",
  56. "typescript": "^4.0.3"
  57. },
  58. "peerDependencies": {
  59. "react": ">=16.9.0",
  60. "react-dom": ">=16.9.0"
  61. }
  62. }