-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.53 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.53 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
90
91
92
93
94
95
96
97
98
99
{
"name": "headui",
"author": "jaskang",
"version": "0.1.14",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"style.css",
"theme.css"
],
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./style.css",
"./theme.css": "./theme.css"
},
"scripts": {
"dev": "npm-run-all --parallel docs:dev",
"docs:dev": "vitepress dev docs --debug",
"docs:build": "pnpm build && vitepress build docs",
"docs:preview": "vitepress preview docs",
"build": "tsdown",
"change": "pnpm changeset",
"release": "pnpm build && changeset publish",
"test": "vitest"
},
"dependencies": {
"@floating-ui/vue": "^1.1.9",
"@vueuse/core": "^13.9.0",
"kotl": "^2.2.2",
"lucide-vue-next": "^0.542.0",
"mitt": "^3.0.1",
"pinia": "^3.0.3",
"reka-ui": "^2.5.0",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.8",
"vue": "^3.5.21",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.29.6",
"@ctrl/tinycolor": "^4.1.0",
"@jaskang/config": "^2.6.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/mdast": "^4.0.4",
"@types/node": "^24.3.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.34.0",
"fs-extra": "^11.3.1",
"happy-dom": "^18.0.1",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-frontmatter": "^2.0.1",
"mdast-util-to-markdown": "^2.1.2",
"micromark-extension-frontmatter": "^2.0.0",
"npm-run-all2": "^8.0.4",
"oxc-minify": "^0.86.0",
"oxc-parser": "^0.86.0",
"oxc-walker": "^0.4.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.12",
"tsdown": "^0.14.2",
"typescript": "^5.9.2",
"unist-util-visit": "^5.0.0",
"vite": "npm:rolldown-vite@latest",
"vitepress": "^2.0.0-alpha.8",
"vitest": "^3.2.4",
"vue": "^3.5.21",
"vue-tsc": "^3.0.6"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@^7.1.5"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
},
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}