-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
executable file
·85 lines (85 loc) · 2.38 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": "@nuxtjs/tailwindcss",
"version": "6.12.2",
"description": "Tailwind CSS module for Nuxt",
"repository": "nuxt-modules/tailwindcss",
"license": "MIT",
"type": "module",
"configKey": "tailwindcss",
"compatibility": {
"nuxt": "^2.9.0 || >=3.0.0-rc.1"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"play": "pnpm dev",
"prepare": "nuxt-module-build prepare",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:preview": "nuxi preview playground",
"dev:nuxt2": "nuxi dev nuxt2-playground",
"dev:prepare": "pnpm prepare && pnpm build:stub",
"build": "nuxt-module-build build",
"build:stub": "pnpm build --stub",
"prepack": "pnpm build",
"release": "pnpm lint && pnpm test && pnpm prepack && pnpm changelogen --release --push && pnpm publish",
"docs:build": "nuxi generate docs",
"docs:preview": "nuxi preview docs",
"docs:dev": "nuxi dev docs",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "pnpm dev:prepare && tsc --noEmit && nuxi typecheck playground"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"autoprefixer": "^10.4.20",
"consola": "^3.2.3",
"defu": "^6.1.4",
"h3": "^1.13.0",
"klona": "^2.0.6",
"pathe": "^1.1.2",
"postcss": "^8.4.47",
"postcss-nesting": "^13.0.0",
"tailwind-config-viewer": "^2.0.4",
"tailwindcss": "~3.4.13",
"ufo": "^1.5.4",
"unctx": "^2.3.1"
},
"devDependencies": {
"@fontsource/inter": "^5.1.0",
"@nuxt/content": "^2.13.2",
"@nuxt/devtools": "^1.5.2",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.14.2",
"@tailwindcss/typography": "^0.5.15",
"changelogen": "^0.5.7",
"destr": "^2.0.3",
"eslint": "^9.12.0",
"happy-dom": "^15.7.4",
"nuxt": "^3.13.2",
"typescript": "^5.6.2",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
},
"packageManager": "pnpm@9.12.0",
"resolutions": {
"@nuxtjs/tailwindcss": "link:."
},
"stackblitz": {
"startCommand": "pnpm dev:prepare && pnpm dev"
}
}