Use forms with or without client-side JavaScript--no code duplication required!
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

94 satır
2.4 KiB

  1. {
  2. "name": "@modal-sh/iceform-next",
  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. "@types/testing-library__jest-dom": "^5.14.9",
  17. "@testing-library/jest-dom": "^5.16.5",
  18. "@testing-library/react": "^13.4.0",
  19. "@testing-library/user-event": "^14.4.3",
  20. "@types/busboy": "^1.5.1",
  21. "@types/cookie": "^0.5.2",
  22. "@types/express": "^4.17.17",
  23. "@types/node": "^18.14.1",
  24. "@types/react": "^18.0.27",
  25. "@vitest/coverage-v8": "^0.33.0",
  26. "eslint": "^8.35.0",
  27. "eslint-config-lxsmnsyc": "^0.5.0",
  28. "express": "^4.18.2",
  29. "jsdom": "^21.1.0",
  30. "next": "13.4.19",
  31. "pridepack": "2.4.4",
  32. "react": "^18.2.0",
  33. "react-dom": "^18.2.0",
  34. "react-test-renderer": "^18.2.0",
  35. "tslib": "^2.5.0",
  36. "typescript": "^4.9.5",
  37. "vitest": "^0.34.1"
  38. },
  39. "peerDependencies": {
  40. "next": "13.4.19",
  41. "react": "^16.8 || ^17.0 || ^18.0",
  42. "react-dom": "^16.8 || ^17.0 || ^18.0"
  43. },
  44. "scripts": {
  45. "prepublishOnly": "pridepack clean && pridepack build",
  46. "build": "pridepack build",
  47. "type-check": "pridepack check",
  48. "lint": "pridepack lint",
  49. "clean": "pridepack clean",
  50. "watch": "pridepack watch",
  51. "start": "pridepack start",
  52. "dev": "pridepack dev",
  53. "test": "vitest"
  54. },
  55. "private": false,
  56. "description": "Simple isomorphic forms for Next.",
  57. "repository": {
  58. "url": "https://code.modal.sh/modal-soft/isoform",
  59. "type": "git"
  60. },
  61. "homepage": "https://code.modal.sh/modal-soft/isoform",
  62. "bugs": {
  63. "url": "https://code.modal.sh/modal-soft/isoform/issues"
  64. },
  65. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  66. "publishConfig": {
  67. "access": "public"
  68. },
  69. "dependencies": {
  70. "@theoryofnekomata/formxtra": "^1.0.3",
  71. "busboy": "^1.6.0",
  72. "fetch-ponyfill": "^7.1.0",
  73. "nookies": "^2.5.2",
  74. "seroval": "^0.9.0"
  75. },
  76. "types": "./dist/types/index.d.ts",
  77. "main": "./dist/cjs/production/index.js",
  78. "module": "./dist/esm/production/index.js",
  79. "exports": {
  80. ".": {
  81. "development": {
  82. "require": "./dist/cjs/development/index.js",
  83. "import": "./dist/esm/development/index.js"
  84. },
  85. "require": "./dist/cjs/production/index.js",
  86. "import": "./dist/esm/production/index.js",
  87. "types": "./dist/types/index.d.ts"
  88. }
  89. },
  90. "typesVersions": {
  91. "*": {}
  92. }
  93. }