-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2 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
{
"name": "@nuxtjs/tailwindcss",
"version": "7.0.0-beta.0",
"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": "^3.17.1",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/vite": "^4.1.8",
"pathe": "^2.0.3",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"@nuxt/devtools": "^2.4.1",
"@nuxt/eslint": "^1.4.1",
"@nuxt/eslint-config": "^1.4.1",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/test-utils": "^3.19.1",
"eslint": "^9.27.0",
"happy-dom": "^17.5.6",
"nuxt": "^3.17.2",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"vue-tsc": "^2.2.10"
},
"packageManager": "pnpm@9.15.9",
"resolutions": {
"@nuxtjs/tailwindcss": "link:."
},
"stackblitz": {
"startCommand": "pnpm dev:prepare && pnpm dev"
}
}