-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 KB
/
package.json
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
{
"name": "@doeanderson/tailwindcss-fluid",
"version": "0.0.2",
"description": "Tailwind CSS plugin for making fluid units",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"main": "./dist/tailwind-fluid.umd.cjs",
"module": "./dist/tailwind-fluid.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/tailwind-fluid.js",
"require": "./dist/tailwind-fluid.umd.cjs"
}
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
},
"devDependencies": {
"@types/node": "^20.2.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doeanderson/tailwindcss-fluid.git"
},
"author": "Doe-Anderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/doeanderson/tailwindcss-fluid/issues"
},
"homepage": "https://github.com/doeanderson/tailwindcss-fluid#readme"
}