-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
{
"name": "@kobalte/tailwindcss",
"version": "0.9.0",
"private": false,
"description": "A TailwindCSS plugin for styling Kobalte components with data-* attributes by using modifiers like ui-expanded:*",
"keywords": [
"solid",
"solidjs",
"ui",
"library",
"design-system",
"components"
],
"homepage": "https://github.com/kobaltedev/kobalte/tree/main/packages/tailwindcss#readme",
"bugs": {
"url": "https://github.com/kobaltedev/kobalte/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobaltedev/kobalte.git"
},
"license": "MIT",
"author": "Fabien Marie-Louise <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"./src/*": "./src/*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"files": ["dist", "src"],
"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"tailwindcss": "3.3.3"
},
"peerDependencies": {
"tailwindcss": "^3.3.3"
},
"publishConfig": {
"access": "public"
}
}