-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 924 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 924 Bytes
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
{
"name": "postcss-clampwind",
"version": "0.0.13",
"description": "A PostCSS plugin to create fluid clamp values for any Tailwind CSS utility",
"license": "Apache-2.0",
"keywords": [
"clampwind",
"postcss-plugin",
"tailwindcss",
"clamp",
"fluid",
"variants"
],
"repository": {
"type": "git",
"url": "https://github.com/danieledep/postcss-clampwind.git"
},
"bugs": {
"url": "https://github.com/danieledep/postcss-clampwind/issues"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./dist/clampwind.esm.js",
"exports": {
"require": "./dist/clampwind.cjs.cjs",
"import": "./dist/clampwind.esm.js",
"default": "./dist/clampwind.esm.js"
},
"files": [
"dist"
],
"devDependencies": {
"esbuild": "^0.25.6"
},
"scripts": {
"dev": "node scripts/build.js --watch",
"build": "node scripts/build.js"
}
}