forked from nuxt-modules/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 1.86 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
{
"name": "@nuxtjs/tailwindcss",
"version": "6.8.0",
"description": "TailwindCSS module for Nuxt",
"repository": "nuxt-modules/tailwindcss",
"license": "MIT",
"configKey": "tailwindcss",
"compatibility": {
"nuxt": "^2.9.0 || ^3.0.0-rc.1",
"bridge": false
},
"exports": {
".": {
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev": "nuxt dev playground",
"dev:nuxt2": "nuxt dev nuxt2-playground",
"lint": "eslint .",
"prepack": "nuxt-module-build",
"release": "pnpm test && pnpm changelogen --release --push && pnpm publish",
"test": "vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.5.3",
"@nuxt/postcss8": "^1.1.3",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"clear-module": "^4.1.2",
"colorette": "^2.0.20",
"cookie-es": "^1.0.0",
"defu": "^6.1.2",
"destr": "^2.0.0",
"h3": "^1.6.6",
"iron-webcrypto": "^0.7.0",
"micromatch": "^4.0.5",
"pathe": "^1.1.1",
"postcss": "^8.4.24",
"postcss-custom-properties": "^13.2.0",
"postcss-nesting": "^11.3.0",
"radix3": "^1.0.1",
"tailwind-config-viewer": "^1.7.2",
"tailwindcss": "~3.3.2",
"ufo": "^1.1.2",
"uncrypto": "^0.1.3"
},
"devDependencies": {
"@fontsource/inter": "^5.0.3",
"@nuxt/content": "^2.7.0",
"@nuxt/devtools": "^0.6.1",
"@nuxt/eslint-config": "latest",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/test-utils": "^3.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/micromatch": "^4.0.2",
"changelogen": "^0.5.3",
"codecov": "latest",
"eslint": "latest",
"jsdom": "^22.1.0",
"nuxt": "^3.5.3",
"vitest": "^0.32.2"
}
}