Use forms with or without client-side JavaScript--no code duplication required!
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

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