-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "react-tailwind-variants",
"version": "1.0.2",
"description": "React Stitches-like variants API for tailwindcss classes",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"license": "MIT",
"author": {
"name": "Salavat Salakhutdinov",
"email": "[email protected]",
"url": "https://github.com/jackardios"
},
"keywords": [
"tailwind",
"tailwindcss",
"css",
"cva",
"classname",
"classname-variants",
"tailwind-variants",
"stitches.js",
"stitches",
"stitches-like",
"variants",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jackardios/react-tailwind-variants.git"
},
"bugs": {
"url": "https://github.com/jackardios/react-tailwind-variants/issues"
},
"homepage": "https://github.com/jackardios/react-tailwind-variants#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"jsdom": "^21.1.1",
"react-dom": "^18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"tailwind-merge": "^1.10.0"
}
}