Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

80 Zeilen
1.7 KiB

  1. {
  2. "version": "0.1.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/get-form-values.git",
  13. "publishConfig": {
  14. "registry": "https://npm.pkg.github.com"
  15. }
  16. },
  17. "master": {
  18. "repository": "https://code.modal.sh/TheoryOfNekomata/get-form-values.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. "prettier": {
  49. "printWidth": 80,
  50. "semi": true,
  51. "singleQuote": true,
  52. "trailingComma": "es5"
  53. },
  54. "name": "@theoryofnekomata/formxtr",
  55. "author": "TheoryOfNekomata",
  56. "module": "dist/get-form-values.esm.js",
  57. "size-limit": [
  58. {
  59. "path": "dist/get-form-values.cjs.production.min.js",
  60. "limit": "10 KB"
  61. },
  62. {
  63. "path": "dist/get-form-values.esm.js",
  64. "limit": "10 KB"
  65. }
  66. ],
  67. "devDependencies": {
  68. "@size-limit/preset-small-lib": "^4.10.2",
  69. "@types/jsdom": "^16.2.10",
  70. "cypress": "^7.2.0",
  71. "cypress-jest-adapter": "^0.1.1",
  72. "husky": "^6.0.0",
  73. "jsdom": "^16.5.3",
  74. "size-limit": "^4.10.2",
  75. "tsdx": "^0.14.1",
  76. "tslib": "^2.2.0",
  77. "typescript": "^4.2.4"
  78. }
  79. }