-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@callstack/repack-plugin-nativewind",
"version": "5.2.5",
"description": "A plugin for @callstack/repack that integrates NativeWind",
"author": "Boris Yankov <boris.yankov@callstack.com>",
"contributors": ["Jakub Romańczyk <jakub.romanczyk@callstack.com>"],
"license": "MIT",
"homepage": "https://github.com/callstack/repack",
"repository": "github:callstack/repack",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "loader"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./loader": {
"types": "./loader/index.d.ts",
"default": "./loader/index.js"
}
},
"keywords": [
"repack",
"re.pack",
"plugin",
"repack-plugin",
"nativewind",
"tailwind",
"tailwindcss"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">=18"
},
"dependencies": {
"dedent": "^0.7.0"
},
"peerDependencies": {
"@callstack/repack": "workspace:*",
"nativewind": ">=4.1.23",
"react-native-css-interop": ">=0.1.22",
"postcss": ">=8.4.31",
"postcss-loader": ">=8.1.1",
"autoprefixer": ">=10.4.16",
"tailwindcss": ">=3.4.11"
},
"devDependencies": {
"@callstack/repack": "workspace:*",
"@rspack/core": "catalog:",
"@types/dedent": "0.7.2",
"@types/node": "catalog:",
"nativewind": "^4.1.23",
"react-native-css-interop": "^0.1.22",
"webpack": "catalog:"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit"
}
}