-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 893 Bytes
/
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
{
"name": "tailwindcss-shorthand",
"version": "1.0.3",
"description": "Useful tailwindcss shorthand classes and variants to boost productivity",
"main": "dist/index.js",
"keywords": ["tailwindcss", "plugin", "shorthand", "productivity"],
"author": "sudoaugustin",
"license": "ISC",
"scripts": {
"test": "jest",
"build": "esbuild ./index.ts --format=cjs --outdir=./dist",
"watch": "tailwindcss -i ./playground/index.css -o ./dist/index.css --watch",
"tailwind": "tailwindcss -i ./playground/index.css -o ./dist/index.css"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/jest": "^29.5.12",
"cssnano": "^7.0.6",
"esbuild": "^0.23.1",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"tailwindcss": "^3.0.0"
}
}