package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "4dkankan-components",
  3. "description": "a collection of 4dkankan components",
  4. "private": true,
  5. "workspaces": [
  6. "packages/*",
  7. "apps/*"
  8. ],
  9. "scripts": {
  10. "docs": "doctoc --title '**Table of content**' README.md",
  11. "clean": "pnpm run -r clean",
  12. "build": "pnpm run -r build",
  13. "test": "pnpm run -r test",
  14. "lint": "eslint --ext js,ts . --fix",
  15. "commit": "git cz",
  16. "preinstall": "npx only-allow pnpm",
  17. "postinstall": "husky install",
  18. "changeset": "changeset",
  19. "version-packages": "changeset version",
  20. "dev:playground": "pnpm -C playground dev"
  21. },
  22. "peerDependencies": {
  23. "vue": "^3.2.0"
  24. },
  25. "devDependencies": {
  26. "@changesets/cli": "^2.24.4",
  27. "@commitlint/cli": "^17.1.2",
  28. "@typescript-eslint/eslint-plugin": "^5.38.1",
  29. "@vitejs/plugin-vue": "^3.1.0",
  30. "@vitejs/plugin-vue-jsx": "^2.0.1",
  31. "@vue/test-utils": "^2.0.2",
  32. "commitizen": "^4.2.5",
  33. "commitlint-config-cz": "^0.13.3",
  34. "cz-customizable": "^7.0.0",
  35. "doctoc": "~2.2.0",
  36. "eslint": "~8.23.1",
  37. "eslint-config-prettier": "^8.5.0",
  38. "eslint-define-config": "^1.7.0",
  39. "eslint-plugin-import": "~2.26.0",
  40. "eslint-plugin-jest": "^25.7.0",
  41. "eslint-plugin-prettier": "^4.2.1",
  42. "eslint-plugin-vue": "^8.7.1",
  43. "husky": "^8.0.1",
  44. "jest": "^29.0.3",
  45. "lint-staged": "^13.0.3",
  46. "resize-observer-polyfill": "^1.5.1",
  47. "typescript": "~4.7.4",
  48. "unplugin-vue-macros": "^0.11.2",
  49. "vitest": "^0.23.4"
  50. },
  51. "lint-staged": {
  52. "*.{vue,js,ts,jsx,tsx,json}": [
  53. "eslint --fix"
  54. ]
  55. },
  56. "config": {
  57. "commitizen": {
  58. "path": "cz-customizable"
  59. }
  60. }
  61. }