shadcn-vue/package.json
2024-04-01 20:53:26 +03:30

66 lines
1.9 KiB
JSON

{
"name": "shadcn-vue",
"type": "module",
"version": "0.10.2",
"private": true,
"packageManager": "pnpm@8.15.5",
"license": "MIT",
"repository": "radix-vue/shadcn-vue",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm --filter www dev",
"build": "pnpm --filter www build",
"preview": "pnpm --filter www preview",
"prepare": "pnpm simple-git-hooks",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changelog": "tsx scripts/update-changelog.ts",
"dev:cli": "pnpm --filter shadcn-vue dev",
"build:cli": "pnpm --filter shadcn-vue build",
"build:registry": "pnpm --filter=www build:registry",
"bumpp": "tsx scripts/changelog.ts",
"pub:beta": "cd packages/cli && pnpm pub:beta",
"pub:release": "cd packages/cli && pnpm pub:release",
"test": "pnpm --filter shadcn-vue test",
"taze": "taze major -frI --ignore-paths ./packages/cli/test/** --exclude typescript,/@iconify/",
"taze:minor": "taze minor -fwri --ignore-paths ./packages/cli/test/** --exclude /@iconify/"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.3",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/semver": "^7.5.8",
"bumpp": "^9.4.0",
"c12": "^1.10.0",
"changelogen": "^0.5.5",
"consola": "^3.2.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"globby": "^14.0.1",
"lint-staged": "^15.2.2",
"ofetch": "^1.3.3",
"pathe": "^1.1.2",
"semver": "^7.6.0",
"simple-git-hooks": "^2.11.0",
"taze": "^0.13.3",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vitest": "^0.34.6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}