Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
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.
 
 
 

75 satır
1.7 KiB

  1. {
  2. "version": "0.2.0",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "publishing": {
  11. "github": {
  12. "repository": "https://github.com/TheoryOfNekomata/formxtra.git",
  13. "publishConfig": {
  14. "registry": "https://npm.pkg.github.com"
  15. }
  16. },
  17. "master": {
  18. "repository": "https://code.modal.sh/TheoryOfNekomata/formxtra.git",
  19. "publishConfig": {
  20. "registry": "https://js.pack.modal.sh"
  21. }
  22. },
  23. "npm": {
  24. "publishConfig": {
  25. "registry": "https://registry.npmjs.com"
  26. }
  27. }
  28. },
  29. "engines": {
  30. "node": ">=10"
  31. },
  32. "scripts": {
  33. "start": "tsdx watch",
  34. "build": "tsdx build",
  35. "test:jsdom": "tsdx test",
  36. "test:dom": "cypress open",
  37. "lint": "tsdx lint",
  38. "prepare": "tsdx build",
  39. "size": "size-limit",
  40. "analyze": "size-limit --why"
  41. },
  42. "peerDependencies": {},
  43. "husky": {
  44. "hooks": {
  45. "pre-commit": "tsdx lint"
  46. }
  47. },
  48. "name": "@theoryofnekomata/formxtra",
  49. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  50. "module": "dist/get-form-values.esm.js",
  51. "size-limit": [
  52. {
  53. "path": "dist/get-form-values.cjs.production.min.js",
  54. "limit": "10 KB"
  55. },
  56. {
  57. "path": "dist/get-form-values.esm.js",
  58. "limit": "10 KB"
  59. }
  60. ],
  61. "devDependencies": {
  62. "@size-limit/preset-small-lib": "^4.10.2",
  63. "@types/jsdom": "^16.2.10",
  64. "cypress": "^7.2.0",
  65. "cypress-file-upload": "^5.0.7",
  66. "cypress-jest-adapter": "^0.1.1",
  67. "husky": "^6.0.0",
  68. "jsdom": "^16.5.3",
  69. "size-limit": "^4.10.2",
  70. "tsdx": "^0.14.1",
  71. "tslib": "^2.2.0",
  72. "typescript": "^4.2.4"
  73. }
  74. }