-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "tailwindcss-constants",
"version": "1.1.4",
"description": "Apply TailwindCSS utilities only if they match a constant",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "bun build index.ts --outfile index.js && tsc index.ts --emitDeclarationOnly --declaration",
"prepare": "husky install && npm run build",
"format": "biome format --write"
},
"files": ["index.js", "index.d.ts"],
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "biome check --apply"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronin-co/tailwindcss-constants.git"
},
"keywords": [
"tailwindcss",
"conditions",
"conditional",
"classes",
"utilities",
"class",
"names"
],
"author": "leo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronin-co/tailwindcss-constants/issues"
},
"homepage": "https://github.com/ronin-co/tailwindcss-constants#readme",
"devDependencies": {
"husky": "7.0.4",
"lint-staged": "12.4.1",
"typescript": "4.6.4",
"@biomejs/biome": "1.9.1"
}
}