package.json 636 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@internal/ui",
  3. "version": "0.0.0",
  4. "private": true,
  5. "license": "Apache-2.0",
  6. "exports": {
  7. "./*": "./src/*.tsx"
  8. },
  9. "scripts": {
  10. "lint": "eslint . --max-warnings 0",
  11. "generate:component": "turbo gen react-component",
  12. "check-types": "tsc --noEmit"
  13. },
  14. "devDependencies": {
  15. "@internal/eslint-config": "workspace:*",
  16. "@internal/typescript-config": "workspace:*",
  17. "@types/node": "^22.15.3",
  18. "@types/react": "19.2.3",
  19. "@types/react-dom": "19.2.3",
  20. "eslint": "^9.39.1",
  21. "typescript": "5.9.2"
  22. },
  23. "dependencies": {
  24. "react": "19.2.3",
  25. "react-dom": "19.2.3"
  26. }
  27. }