-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "f-tailwind",
"version": "0.1.0",
"description": "Write Tailwind CSS without polluting your Vue templates",
"keywords": [
"css",
"nuxt",
"nuxt-module",
"tailwind",
"tailwindcss",
"vite",
"vue"
],
"license": "MIT",
"author": "jshedd",
"bin": {
"f-tailwind-migrate": "./dist/cli/migrate.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./shims": {
"types": "./dist/shims.d.mts"
}
},
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"test": "vitest",
"test:run": "vitest run",
"format": "oxfmt",
"format:check": "oxfmt --check"
},
"dependencies": {
"@nuxt/kit": "^3.0.0",
"magic-string": "^0.30.0",
"postcss": "^8.0.0",
"postcss-selector-parser": "^7.1.1"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.0",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.3.0",
"@vue/compiler-sfc": "^3.4.0",
"nuxt": "^3.0.0",
"oxfmt": "^0.35.0",
"tailwindcss": "^4.2.1",
"vitest": "^2.0.0"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.4.0"
},
"engines": {
"node": ">=18"
}
}