123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- "name": "kankan-components",
- "private": true,
- "description": "a collection of 4dkankan components",
- "workspaces": [
- "packages/*",
- "apps/*"
- ],
- "scripts": {
- "clean": "pnpm run -r clean",
- "test": "vitest",
- "test:coverage": "vitest --coverage",
- "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache",
- "lint:fix": "pnpm run lint --fix",
- "format": "prettier --write --cache .",
- "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",
- "build": "pnpm run -C internal/build start",
- "build:theme": "pnpm run -C packages/theme-chalk build",
- "prepare": "husky install",
- "postinstall": "pnpm stub && concurrently \"pnpm run -C internal/metadata dev\"",
- "typecheck": "run-p typecheck:web typecheck:node",
- "typecheck:web": "vue-tsc -p tsconfig.web.json --composite false --noEmit",
- "typecheck:node": "tsc -p tsconfig.node.json --noEmit",
- "release": "pnpm build && pnpm release:only",
- "release:only": "changeset publish --registry=http://192.168.0.47:4873/"
- },
- "peerDependencies": {
- "vue": "^3.2.0"
- },
- "dependencies": {
- "@kankan-components/components": "workspace:*",
- "@kankan-components/constants": "workspace:*",
- "@kankan-components/directives": "workspace:*",
- "@kankan-components/hooks": "workspace:*",
- "@kankan-components/icons-vue": "^0.0.1",
- "@kankan-components/theme-chalk": "workspace:*",
- "@kankan-components/utils": "workspace:*",
- "@vueuse/core": "^9.13.0",
- "lodash": "^4.17.21",
- "lodash-es": "^4.17.21",
- "lodash-unified": "^1.0.3",
- "vue": "^3.3.4"
- },
- "devDependencies": {
- "@changesets/cli": "^2.26.2",
- "@commitlint/cli": "^17.7.1",
- "@kankan-components/build": "workspace:*",
- "@kankan-components/build-utils": "workspace:*",
- "@kankan-components/eslint-config": "workspace:*",
- "@pnpm/find-workspace-packages": "^4.0.43",
- "@pnpm/logger": "^4.0.0",
- "@pnpm/types": "^8.10.0",
- "@types/fs-extra": "^9.0.13",
- "@types/gulp": "^4.0.13",
- "@types/jsdom": "^16.2.15",
- "@types/node": "^18.17.5",
- "@types/sass": "^1.45.0",
- "@vitejs/plugin-vue": "^3.2.0",
- "@vitejs/plugin-vue-jsx": "^2.1.1",
- "@vue/test-utils": "^2.4.1",
- "commitizen": "^4.3.0",
- "commitlint-config-cz": "^0.13.3",
- "concurrently": "^7.6.0",
- "cz-customizable": "^7.0.0",
- "eslint": "^8.18.0",
- "eslint-define-config": "^1.5.1",
- "husky": "^8.0.3",
- "jest": "^29.6.2",
- "jsdom": "16.4.0",
- "lint-staged": "^13.3.0",
- "npm-run-all": "^4.1.5",
- "prettier": "^2.7.1",
- "resize-observer-polyfill": "^1.5.1",
- "sass": "^1.66.0",
- "typescript": "^4.9.5",
- "unplugin-vue-components": "^0.20.1",
- "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"
- ]
- }
- }
|