-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
60
61
62
63
64
65
66
67
{
"name": "styled-cva",
"description": "A typesafe, class-variance-authority-based, styled-components-like library for authoring React components",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
"license": "LicenseRef-LICENSE",
"keywords": [
"styled-components",
"class-variance-authority",
"react",
"tailwindcss",
"variants"
],
"scripts": {
"build": "bun compile && bun bundle",
"compile": "tsc --noEmit",
"bundle": "NODE_OPTIONS=\"--max-old-space-size=4096\" tsup",
"test": "vitest --run src",
"clean": "rm -rf dist",
"lint": "eslint ./src --ext .ts,.tsx",
"postversion": "bun run build",
"format": "prettier --write ."
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.0",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/strictest": "^2.0.5",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"happy-dom": "^13.10.1",
"prettier-plugin-tailwindcss": "^0.5.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.2",
"ts-expect": "^1.3.0",
"tsup": "^8.0.2",
"vitest": "^1.4.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"dependencies": {
"clsx": "^2.1.0"
}
}