package.json 607 B

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