-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.91 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.91 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "clsx-react",
"version": "1.0.1",
"description": "Custom React JSX Runtime to support arrays and objects in className prop natively.",
"keywords": [
"react",
"jsx",
"jsx-runtime",
"jsx-dev-runtime",
"className",
"clsx",
"styling",
"utility",
"typescript",
"css"
],
"type": "module",
"types": "./dist/clsx-react.d.ts",
"exports": {
"./jsx-runtime": {
"types": "./dist/clsx-react.d.ts",
"import": "./dist/jsx-runtime.js",
"require": "./dist/jsx-runtime.cjs"
},
"./jsx-dev-runtime": {
"types": "./dist/clsx-react.d.ts",
"import": "./dist/jsx-dev-runtime.js",
"require": "./dist/jsx-dev-runtime.cjs"
}
},
"files": [
"clsx-react.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Zsolt Tövis",
"email": "tovis.zsolt@gmail.com",
"url": "https://toviszsolt.stacklegend.com/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/toviszsolt"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/toviszsolt"
}
],
"homepage": "https://codesandbox.io/p/devbox/broken-fog-m82g3j?file=%2Fapp%2Flayout.tsx%3A1%2C1",
"repository": {
"type": "git",
"url": "git+https://github.com/toviszsolt/clsx-react.git"
},
"bugs": {
"url": "https://github.com/toviszsolt/clsx-react/issues"
},
"license": "MIT",
"scripts": {
"build": "yarn test && node scripts/build.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@vitest/coverage-v8": "^4.0.16",
"clsx": "^2.1.1",
"esbuild": "^0.27.2",
"jsdom": "^27.4.0",
"react": "^19.2.3",
"vitest": "^4.0.16"
}
}