forked from mgcrea/react-native-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.14 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@mgcrea/react-native-tailwind",
"version": "0.12.1",
"description": "Compile-time Tailwind CSS for React Native with zero runtime overhead",
"author": "Olivier Louvignes <olivier@mgcrea.io> (https://github.com/mgcrea)",
"homepage": "https://github.com/mgcrea/react-native-tailwind#readme",
"repository": "github:mgcrea/react-native-tailwind",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./babel": {
"import": "./dist/babel/index.cjs",
"require": "./dist/babel/index.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"./react-native": {
"types": "./dist/react-native.d.ts"
}
},
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"dev": "cd example; npm run dev",
"build": "npm run build:babel && npm run build:babel-plugin && npm run build:runtime && npm run build:types",
"build:babel": "babel src --out-dir dist --extensions \".ts,.tsx,.js,.jsx\" --copy-files --ignore 'src/babel/**' --ignore '**/*.d.ts'",
"build:babel-plugin": "node --experimental-strip-types scripts/bundle-babel-plugin.ts",
"build:runtime": "node --experimental-strip-types scripts/bundle-runtime.ts",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly && node --experimental-strip-types scripts/post-build-types.ts",
"install:ios": "cd example; npm run install:ios",
"open:ios": "cd example; npm run open:ios",
"lint": "eslint src/",
"prettify": "prettier --write src/",
"check": "tsc --noEmit",
"spec": "vitest --run --coverage",
"test": "npm run lint && npm run check && npm run spec",
"prepare": "npm run build"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@babel/types": "^7.28.5",
"@mgcrea/eslint-config-react-native": "^0.14.0",
"@react-native-community/cli": "^20.0.2",
"@react-native/babel-preset": "0.82.1",
"@react-native/typescript-config": "0.82.1",
"@testing-library/react-native": "^13.3.3",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.28.0",
"@types/react": "^19.2.6",
"@vitest/coverage-v8": "^4.0.13",
"babel-plugin-module-resolver": "^5.0.2",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.0",
"react-native": "0.82.1",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.23.0",
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}