-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "esbuild-plugin-tailwindcss",
"version": "2.2.0",
"description": "Esbuild plugin for TailwindCSS",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"private": false,
"author": "ttempaa <ttempaa.mt@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ttempaa/esbuild-plugin-tailwindcss",
"repository": {
"type": "git",
"url": "https://github.com/ttempaa/esbuild-plugin-tailwindcss.git"
},
"keywords": [
"tailwindcss",
"esbuild",
"esbuild-plugin",
"bun",
"bun-plugin",
"plugin"
],
"files": ["dist", "readme.md"],
"scripts": {
"build": "tsup",
"lint": "biome check ./source",
"lint:fix": "biome check --write ./source",
"prepublishOnly": "bun run typecheck && bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.1",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.6",
"postcss-modules": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"esbuild": "^0.25.12",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}