package.json 958 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@vben/commitlint-config",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "license": "MIT",
  7. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  11. "directory": "internal/lint-configs/commitlint-config"
  12. },
  13. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  14. "scripts": {
  15. "stub": "pnpm unbuild --stub"
  16. },
  17. "files": [
  18. "dist"
  19. ],
  20. "main": "./dist/index.mjs",
  21. "module": "./dist/index.mjs",
  22. "types": "./dist/index.d.ts",
  23. "imports": {
  24. "#*": "./src/*"
  25. },
  26. "exports": {
  27. ".": {
  28. "types": "./dist/index.d.ts",
  29. "import": "./dist/index.mjs",
  30. "default": "./dist/index.mjs"
  31. }
  32. },
  33. "dependencies": {
  34. "@commitlint/cli": "^19.3.0",
  35. "@commitlint/config-conventional": "^19.2.2",
  36. "@vben/node-utils": "workspace:*",
  37. "cz-git": "^1.9.2",
  38. "czg": "^1.9.2"
  39. }
  40. }