Use forms with or without client-side JavaScript--no code duplication required!
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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