package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@livekit/react-core",
  3. "version": "1.1.0",
  4. "description": "LiveKit Core React SDK",
  5. "author": "davidzhao",
  6. "license": "Apache-2.0",
  7. "repository": "livekit/livekit-react",
  8. "main": "dist/index.js",
  9. "module": "dist/index.modern.js",
  10. "source": "src/index.tsx",
  11. "homepage": "example.livekit.io",
  12. "engines": {
  13. "node": ">=10"
  14. },
  15. "scripts": {
  16. "build": "microbundle-crl --no-compress --format modern,cjs",
  17. "start": "microbundle-crl watch --no-compress --format modern,cjs",
  18. "lint": "eslint 'src/**/*.{ts,tsx}'",
  19. "prepare": "run-s build",
  20. "prepublishOnly": "yarn test",
  21. "test": "run-s test:unit test:build",
  22. "test:build": "run-s build",
  23. "test:unit": "cross-env CI=1 react-scripts test --env=jsdom --passWithNoTests",
  24. "test:watch": "react-scripts test --env=jsdom"
  25. },
  26. "peerDependencies": {
  27. "livekit-client": "^1.3.2",
  28. "react": ">=15",
  29. "react-dom": ">=15"
  30. },
  31. "devDependencies": {
  32. "@testing-library/jest-dom": "^4.2.4",
  33. "@testing-library/react": "^9.5.0",
  34. "@testing-library/user-event": "^7.2.1",
  35. "@types/jest": "^25.1.4",
  36. "@types/node": "^12.12.38",
  37. "@types/react": "^18.0.9",
  38. "@types/react-dom": "^18.0.3",
  39. "@typescript-eslint/eslint-plugin": "^5.22.0",
  40. "@typescript-eslint/parser": "^5.22.0",
  41. "cross-env": "^7.0.2",
  42. "eslint": "^8.15.0",
  43. "eslint-config-prettier": "^6.7.0",
  44. "eslint-config-standard": "^14.1.0",
  45. "eslint-config-standard-react": "^9.2.0",
  46. "eslint-plugin-import": "^2.18.2",
  47. "eslint-plugin-node": "^11.0.0",
  48. "eslint-plugin-prettier": "^3.1.1",
  49. "eslint-plugin-promise": "^4.2.1",
  50. "eslint-plugin-standard": "^4.0.1",
  51. "livekit-client": "^1.3.2",
  52. "microbundle-crl": "^0.13.11",
  53. "npm-run-all": "^4.1.5",
  54. "prettier": "^2.3.1",
  55. "react": "^18.1.0",
  56. "react-dom": "^18.1.0",
  57. "react-scripts": "^5.0.1",
  58. "typescript": "^4.2.3"
  59. },
  60. "files": [
  61. "dist",
  62. "src"
  63. ],
  64. "gitHead": "a823a9a17693b3eba5a4099d3c7930bd5a931da4"
  65. }