Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

79 lines
1.8 KiB

  1. {
  2. "name": "@modal-sh/react-utils",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "devDependencies": {
  16. "@storybook/react": "^7.3.2",
  17. "@testing-library/jest-dom": "^5.16.5",
  18. "@testing-library/react": "^13.4.0",
  19. "@types/node": "^18.14.1",
  20. "@types/react": "^18.2.18",
  21. "eslint": "^8.35.0",
  22. "eslint-config-lxsmnsyc": "^0.5.0",
  23. "jsdom": "^21.1.0",
  24. "pridepack": "2.4.4",
  25. "react": "^18.2.0",
  26. "react-dom": "^18.2.0",
  27. "react-test-renderer": "^18.2.0",
  28. "tslib": "^2.5.0",
  29. "typescript": "^4.9.5",
  30. "vitest": "^0.28.1"
  31. },
  32. "peerDependencies": {
  33. "react": "^16.8 || ^17.0 || ^18.0",
  34. "react-dom": "^16.8 || ^17.0 || ^18.0"
  35. },
  36. "scripts": {
  37. "prepublishOnly": "pridepack clean && pridepack build",
  38. "build": "pridepack build",
  39. "type-check": "pridepack check",
  40. "lint": "pridepack lint",
  41. "clean": "pridepack clean",
  42. "watch": "pridepack watch",
  43. "start": "pridepack start",
  44. "dev": "pridepack dev",
  45. "test": "vitest"
  46. },
  47. "private": false,
  48. "description": "Utilities for React.",
  49. "repository": {
  50. "url": "",
  51. "type": "git"
  52. },
  53. "homepage": "",
  54. "bugs": {
  55. "url": ""
  56. },
  57. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "types": "./dist/types/index.d.ts",
  62. "main": "./dist/cjs/production/index.js",
  63. "module": "./dist/esm/production/index.js",
  64. "exports": {
  65. ".": {
  66. "development": {
  67. "require": "./dist/cjs/development/index.js",
  68. "import": "./dist/esm/development/index.js"
  69. },
  70. "require": "./dist/cjs/production/index.js",
  71. "import": "./dist/esm/production/index.js",
  72. "types": "./dist/types/index.d.ts"
  73. }
  74. },
  75. "typesVersions": {
  76. "*": {}
  77. }
  78. }