-
Notifications
You must be signed in to change notification settings - Fork 298
/
package.json
66 lines (66 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shadcn-vue",
"type": "module",
"version": "0.11.2",
"private": true,
"packageManager": "pnpm@9.10.0",
"license": "MIT",
"repository": "radix-vue/shadcn-vue",
"workspaces": [
"packages/*"
],
"engines": {
"pnpm": ">=9.6.0"
},
"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": "^3.6.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vitest/ui": "^2.1.1",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.9",
"typescript": "catalog:",
"vitest": "^2.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"pnpm": {
"overrides": {
"hasown": "npm:@nolyfill/hasown@^1.0.29",
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"isarray": "npm:@nolyfill/isarray@^1.0.29",
"typedarray": "npm:@nolyfill/typedarray@^1.0.29"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}