-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.06 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
{
"name": "@nuxtjs/tailwindcss",
"version": "7.0.0-beta.1",
"description": "Tailwind CSS module for Nuxt",
"repository": "nuxt-modules/tailwindcss",
"license": "MIT",
"type": "module",
"configKey": "tailwindcss",
"compatibility": {
"nuxt": ">=3.0.0"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"play": "pnpm dev",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build 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": "^4.1.0",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.12",
"exsolve": "^1.0.7",
"pathe": "^2.0.3",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.3",
"@nuxt/eslint": "^1.9.0",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/test-utils": "^3.19.2",
"changelogen": "^0.6.2",
"eslint": "^9.34.0",
"happy-dom": "^18.0.1",
"nuxt": "^4.1.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.6"
},
"packageManager": "pnpm@9.15.3",
"resolutions": {
"@nuxtjs/tailwindcss": "link:."
},
"stackblitz": {
"startCommand": "pnpm dev:prepare && pnpm dev"
}
}