-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "react-native-web-tailwind-compat",
"version": "1.2.0",
"author": "Alexander Nicholson",
"description": "Adds CSS layers to react native web styles, allowing it to be used with TailwindCSS v4",
"homepage": "https://github.com/a16n-dev/uniwind-plugin-next#readme",
"repository": {
"type": "git",
"url": "https://github.com/a16n-dev/uniwind-plugin-next.git"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@vitest/ui": "^4.0.16",
"tsdown": "^0.18.2",
"vitest": "^4.0.16"
},
"peerDependencies": {
"react-native": "^0.79",
"react-native-web": "^0.19"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./createCSSStyleSheet": {
"require": "./dist/createCSSStyleSheet.cjs",
"import": "./dist/createCSSStyleSheet.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"README.md"
]
}