shadcn-vue/package.json
2024-03-07 08:53:13 +08:00

54 lines
1.6 KiB
JSON

{
"name": "shadcn-vue",
"type": "module",
"version": "0.10.0",
"private": true,
"packageManager": "pnpm@8.15.4",
"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 . --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"dev:cli": "pnpm --filter shadcn-vue dev",
"build:cli": "pnpm --filter shadcn-vue build",
"build:registry": "pnpm --filter=www build:registry",
"bumpp": "bumpp package.json packages/*/package.json apps/*/package.json",
"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.7.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"bumpp": "^9.3.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.3",
"typescript": "^5.3.3",
"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"
}
}