package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. },
  21. "peerDependencies": {
  22. "vue": "^3.2.0"
  23. },
  24. "devDependencies": {
  25. "@changesets/cli": "^2.24.4",
  26. "@commitlint/cli": "^17.1.2",
  27. "@nighttrax/eslint-config-tsx": "~10.0.0",
  28. "@vitejs/plugin-vue": "^3.1.0",
  29. "@vitejs/plugin-vue-jsx": "^2.0.1",
  30. "@vue/test-utils": "^2.0.2",
  31. "commitizen": "^4.2.5",
  32. "commitlint-config-cz": "^0.13.3",
  33. "cz-customizable": "^7.0.0",
  34. "doctoc": "~2.2.0",
  35. "eslint": "~8.23.1",
  36. "eslint-config-prettier": "^8.5.0",
  37. "eslint-define-config": "^1.7.0",
  38. "eslint-plugin-import": "~2.26.0",
  39. "eslint-plugin-jest": "^25.7.0",
  40. "eslint-plugin-prettier": "^4.2.1",
  41. "eslint-plugin-vue": "^8.7.1",
  42. "husky": "^8.0.1",
  43. "jest": "^29.0.3",
  44. "lint-staged": "^13.0.3",
  45. "resize-observer-polyfill": "^1.5.1",
  46. "typescript": "~4.7.4",
  47. "unplugin-vue-macros": "^0.11.2",
  48. "vitest": "^0.23.4"
  49. },
  50. "lint-staged": {
  51. "*.{vue,js,ts,jsx,tsx,json}": [
  52. "eslint --fix"
  53. ]
  54. },
  55. "config": {
  56. "commitizen": {
  57. "path": "cz-customizable"
  58. }
  59. }
  60. }