12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "name": "kankan-components",
- "private": true,
- "description": "a collection of 4dkankan components",
- "workspaces": [
- "packages/*",
- "apps/*"
- ],
- "scripts": {
- "clean": "pnpm run -r clean",
- "build": "pnpm run -r build",
- "test": "vitest",
- "test:coverage": "vitest --coverage",
- "lint": "eslint --ext js,ts,tsx,vue . --fix",
- "commit": "git cz",
- "preinstall": "npx only-allow pnpm",
- "changeset": "changeset",
- "version-packages": "changeset version",
- "play": "pnpm -C playground dev",
- "docs:dev": "pnpm run -C docs dev",
- "stub": "pnpm run -r --parallel stub",
- "prepare": "husky install",
- "postinstall": "pnpm stub && concurrently \"pnpm run -C internal/metadata dev\""
- },
- "peerDependencies": {
- "vue": "^3.2.0"
- },
- "dependencies": {
- "@kankan/components": "workspace:*",
- "@kankan/hooks": "workspace:*",
- "@vueuse/core": "^9.1.0",
- "lodash": "^4.17.21",
- "lodash-es": "^4.17.21",
- "lodash-unified": "^1.0.2"
- },
- "devDependencies": {
- "@changesets/cli": "^2.24.4",
- "@commitlint/cli": "^17.1.2",
- "@kankan/build": "workspace:*",
- "@kankan/build-utils": "workspace:*",
- "@kankan/eslint-config": "workspace:*",
- "@pnpm/find-workspace-packages": "^4.0.16",
- "@pnpm/logger": "^4.0.0",
- "@pnpm/types": "^8.4.0",
- "@types/jsdom": "^16.2.14",
- "@types/node": "*",
- "@types/sass": "^1.43.1",
- "@typescript-eslint/eslint-plugin": "^5.38.1",
- "@vitejs/plugin-vue": "^3.1.0",
- "@vitejs/plugin-vue-jsx": "^2.0.1",
- "@vue/test-utils": "^2.0.2",
- "commitizen": "^4.2.5",
- "commitlint-config-cz": "^0.13.3",
- "concurrently": "^7.2.2",
- "cz-customizable": "^7.0.0",
- "eslint": "~8.23.1",
- "eslint-config-prettier": "^8.5.0",
- "eslint-define-config": "^1.7.0",
- "eslint-plugin-import": "~2.26.0",
- "eslint-plugin-jest": "^25.7.0",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-vue": "^8.7.1",
- "husky": "^8.0.1",
- "jest": "^29.0.3",
- "jsdom": "16.4.0",
- "lint-staged": "^13.0.3",
- "resize-observer-polyfill": "^1.5.1",
- "sass": "^1.53.0",
- "typescript": "~4.7.4",
- "unplugin-vue-components": "^0.20.1",
- "unplugin-vue-define-options": "^0.12.0",
- "unplugin-vue-macros": "^0.11.2",
- "vitest": "^0.23.4"
- },
- "config": {
- "commitizen": {
- "path": "cz-customizable"
- }
- },
- "lint-staged": {
- "*.{vue,js,ts,jsx,tsx,mts,json}": [
- "eslint --fix"
- ]
- }
- }
|