63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "shadcn-vue",
|
|
"type": "module",
|
|
"version": "0.10.5",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.4.0",
|
|
"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",
|
|
"dev:cli": "pnpm --filter shadcn-vue dev",
|
|
"dev:nuxt": "pnpm --filter shadcn-nuxt 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.21.3",
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@vitest/ui": "^1.6.0",
|
|
"bumpp": "^9.4.1",
|
|
"eslint": "^9.6.0",
|
|
"lint-staged": "^15.2.7",
|
|
"simple-git-hooks": "^2.11.1",
|
|
"taze": "^0.14.2",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"hasown": "npm:@nolyfill/hasown@latest",
|
|
"isarray": "npm:@nolyfill/isarray@latest",
|
|
"typedarray": "npm:@nolyfill/typedarray@latest"
|
|
}
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged",
|
|
"commit-msg": "pnpm commitlint --edit ${1}"
|
|
},
|
|
"lint-staged": {
|
|
"*": "eslint --fix"
|
|
}
|
|
}
|