package.json 921 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "simaq",
  3. "description": "4dage 录屏视频--sdk",
  4. "private": true,
  5. "workspaces": [
  6. "packages/*",
  7. "examples/*"
  8. ],
  9. "scripts": {
  10. "docs": "doctoc --title '**Table of content**' README.md",
  11. "clean": "pnpm run -r clean",
  12. "build": "pnpm run -r build",
  13. "test": "pnpm run -r test",
  14. "lint": "eslint --ext js,ts,tsx . --fix",
  15. "dev": "pnpm -C play dev"
  16. },
  17. "devDependencies": {
  18. "@nighttrax/eslint-config-tsx": "~10.0.0-beta.0",
  19. "doctoc": "~2.2.0",
  20. "eslint": "~8.20.0",
  21. "eslint-plugin-import": "~2.26.0",
  22. "@typescript-eslint/eslint-plugin": "^5.30.6",
  23. "@typescript-eslint/parser": "^5.30.6",
  24. "eslint-config-prettier": "^8.5.0",
  25. "eslint-plugin-prettier": "^4.2.1",
  26. "prettier": "^2.7.1",
  27. "typescript": "~4.7.0"
  28. },
  29. "pnpm": {
  30. "peerDependencyRules": {
  31. "allowedVersions": {
  32. "react-scripts": "^5.0.0"
  33. }
  34. }
  35. }
  36. }