-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@nuxt/ui",
"version": "2.11.1",
"repository": "nuxt/ui",
"homepage": "https://ui.nuxt.com",
"license": "MIT",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=v16.20.2"
},
"scripts": {
"build": "nuxt-module-build build",
"prepack": "pnpm build",
"dev": "nuxi dev docs",
"play": "nuxi dev playground",
"build:docs": "nuxi generate docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit && nuxi typecheck docs",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare docs",
"release": "release-it",
"test": "vitest"
},
"dependencies": {
"@egoist/tailwindcss-icons": "^1.7.1",
"@headlessui/tailwindcss": "^0.2.0",
"@headlessui/vue": "^1.7.16",
"@iconify-json/heroicons": "^1.1.19",
"@nuxt/kit": "^3.9.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/tailwindcss": "^6.10.3",
"@popperjs/core": "^2.11.8",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vueuse/core": "^10.7.1",
"@vueuse/integrations": "^10.7.1",
"@vueuse/math": "^10.7.1",
"defu": "^6.1.3",
"fuse.js": "^6.6.2",
"nuxt-icon": "^0.6.8",
"ohash": "^1.1.3",
"pathe": "^1.1.1",
"scule": "^1.1.1",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/test-utils": "^3.9.0",
"@release-it/conventional-changelog": "^8.0.1",
"@vue/test-utils": "^2.4.3",
"eslint": "^8.56.0",
"happy-dom": "^12.10.3",
"joi": "^17.11.0",
"nuxt": "^3.9.0",
"release-it": "^17.0.1",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"valibot": "^0.25.0",
"vitest": "^1.1.1",
"vitest-environment-nuxt": "^1.0.0",
"vue-tsc": "^1.8.27",
"yup": "^1.3.3",
"zod": "^3.22.4"
},
"resolutions": {
"@nuxt/kit": "3.9.0",
"@nuxt/schema": "3.9.0",
"vue": "3.3.13",
"tailwindcss": "3.4.0"
}
}