-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
77
78
{
"name": "use-styled",
"description": "A powerful library for creating React/React Native components",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "bun test",
"bench": "bun run src/__bench__/index.bench.tsx",
"clean": "rm -rf dist",
"build": "bun run ./build.mjs",
"build:types": "tsc --project tsconfig.json",
"publish:beta": "npm version prerelease --preid beta --no-git-tag-version && bun publish --tag beta",
"publish:release": "npm version patch --no-git-tag-version && bun publish",
"publish:minor": "npm version minor --no-git-tag-version && bun publish",
"publish:major": "npm version major --no-git-tag-version && bun publish"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@happy-dom/global-registrator": "^17.4.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/bun": "latest",
"@types/react": ">=18.0.0",
"@types/styled-components": "^5.1.34",
"chalk": "^5.4.1",
"mitata": "^1.0.34",
"react": "^18.0.0",
"styled-components": "^6.1.17",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"keywords": [
"react",
"react-native",
"styled",
"styled-components",
"styled-system",
"tamagui",
"nativewind",
"tailwind",
"css-in-js",
"utility",
"hook"
],
"publishConfig": {
"access": "public"
},
"author": "Bruno Garcia <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Brunowilliang/use-styled.git"
},
"homepage": "https://github.com/Brunowilliang/use-styled",
"bugs": {
"url": "https://github.com/Brunowilliang/use-styled/discussions"
}
}