-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
42
43
{
"name": "tailwindcss-components-helper",
"version": "0.1.5",
"description": "",
"type": "module",
"files": ["dist", "package.json"],
"homepage": "https://github.com/strozw/tailwindcss-components-helper",
"repository": {
"type": "git",
"url": "https://github.com/strozw/tailwindcss-components-helper"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "pnpm vitest run ./src",
"check": "tsc --noEmit",
"fix": "pnpm biome format --write .",
"build": "tsup src/index.ts --dts --format esm,cjs"
},
"keywords": ["tailwindcss", "plugin", "component", "types"],
"author": "strozw",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@tsconfig/recommended": "^1.0.6",
"lefthook": "^1.6.10",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"tailwindcss": "^3"
},
"dependencies": {
"csstype": "^3.1.3"
}
}