-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.17 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
56
57
58
59
{
"name": "classname-variants",
"version": "1.5.0",
"description": "Variant API for plain class names",
"author": "Felix Gnass <[email protected]>",
"license": "MIT",
"repository": "fgnass/classname-variants",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"type": "./lib/index.d.ts"
},
"./react": {
"import": "./lib/react.js",
"type": "./lib/react.d.ts"
},
"./preact": {
"import": "./lib/preact.js",
"type": "./lib/preact.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./lib/index.d.ts"
],
"react": [
"./lib/react.d.ts"
],
"preact": [
"./lib/preact.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"start": "npx vite",
"prepublishOnly": "npm run build"
},
"keywords": [
"tailwind",
"css",
"classname",
"variants",
"react",
"preact"
],
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"preact": "^10.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4"
}
}