package.json 636 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "kind-form-verify",
  3. "version": "1.0.3",
  4. "description": "表单规则验证工具库",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "author": "kindring",
  8. "keywords": [
  9. "verify",
  10. "utils"
  11. ],
  12. "scripts": {
  13. "docs": "jsdoc2md src/*.js > api.md",
  14. "patch": "npm run build && npm version patch",
  15. "compile": "npx babel -d lib/ src/",
  16. "build": "tsc --build --clean && tsc",
  17. "prepublishOnly": "npm run compile"
  18. },
  19. "license": "MIT",
  20. "devDependencies": {
  21. "@babel/cli": "^7.23.0",
  22. "@babel/core": "^7.23.2",
  23. "@babel/preset-env": "^7.23.2",
  24. "typescript": "^5.2.2"
  25. }
  26. }