-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
76 lines (76 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
{
"name": "react-twc",
"version": "1.4.2",
"description": "Create reusable Tailwind CSS components with React.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "rm -rf dist && rollup -c",
"format": "prettier --write .",
"check-format": "prettier --check src",
"lint": "eslint .",
"check-types": "tsc --noEmit",
"prepublishOnly": "npm run build",
"release": "standard-version && conventional-github-releaser --preset angular"
},
"keywords": [
"react",
"tailwind",
"css",
"components",
"styled",
"styled-components"
],
"author": "Greg Bergé",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gregberge/twc.git"
},
"homepage": "https://react-twc.vercel.app",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
},
"devDependencies": {
"@ampproject/filesize": "^4.3.0",
"@radix-ui/react-accordion": "^1.1.2",
"@swc/core": "^1.3.103",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"class-variance-authority": "^0.7.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.56.0",
"happy-dom": "^13.1.4",
"prettier": "^3.2.2",
"react": "^18.2.0",
"react-aria-components": "^1.0.1",
"rollup": "^4.9.5",
"rollup-plugin-swc3": "^0.11.0",
"rollup-plugin-ts": "^3.4.5",
"standard-version": "^9.5.0",
"tailwind-merge": "^2.2.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"clsx": "^2.1.0"
},
"filesize": {
"track": [
"./dist/**/*.mjs"
]
}
}