-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.6 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "shadcn-vue",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"update:all": "bun scripts/update-all.ts",
"cli": "bun src/cli/index.ts",
"dev": "bunx --bun vite",
"build": "bunx --bun vite build",
"preview": "bunx --bun vite preview",
"lint": "scripts/lint-all.ts",
"lint:changed": "scripts/lint-all.ts --changed",
"lint:staged": "scripts/lint-all.ts --staged",
"format": "scripts/lint-all.ts --fix",
"format:changed": "scripts/lint-all.ts --fix --changed",
"format:staged": "scripts/lint-all.ts --fix --staged",
"typecheck": "bunx --bun vue-tsc --noEmit",
"precommit": "bun lint:staged",
"registry": "bun src/cli"
},
"dependencies": {
"@iconify/vue": "^5.0.0",
"@internationalized/date": "^3.10.0",
"@tailwindcss/vite": "^4.1.16",
"@tanstack/vue-table": "^8.21.3",
"@unovis/ts": "^1.6.1",
"@unovis/vue": "^1.6.1",
"@vee-validate/zod": "^4.15.1",
"@vueuse/components": "^13.9.0",
"@vueuse/core": "^13.9.0",
"@vueuse/integrations": "^13.9.0",
"@vueuse/router": "^13.9.0",
"change-case": "^5.4.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.1",
"embla-carousel-vue": "^8.6.0",
"es-toolkit": "^1.41.0",
"mitt": "^3.0.1",
"non.geist": "^1.0.4",
"nprogress": "^0.2.0",
"pinia": "^3.0.3",
"reka-ui": "^2.6.0",
"simple-git-hooks": "^2.13.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"tw-animate-css": "^1.4.0",
"vaul-vue": "^0.4.1",
"vee-validate": "^4.15.1",
"vue": "^3.5.22",
"vue-router": "^4.6.3",
"vue-sonner": "^2.0.9",
"zod": "^4.1.12"
},
"devDependencies": {
"@antfu/eslint-config": "^4.19.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "^1.3.1",
"@types/common-tags": "^1.8.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.18.12",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/tsconfig": "^0.7.0",
"common-tags": "^1.8.2",
"consola": "^3.4.2",
"eslint": "^9.38.0",
"eslint-plugin-better-tailwindcss": "^3.7.10",
"eslint-plugin-format": "^1.0.2",
"minimist": "^1.2.8",
"oxc-parser": "^0.77.3",
"pathe": "^2.0.3",
"typescript": "~5.8.3",
"vite": "^6.4.1",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.2.12"
},
"trustedDependencies": ["@tailwindcss/oxide"],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "bun precommit",
"commit-msg": "bun commitlint --edit ${1}"
}
}