Files
nativewind/package.json
Mark Lawlor 22270f1589 1.0.0-1
2022-04-28 18:04:33 +10:00

91 lines
2.3 KiB
JSON

{
"version": "1.0.0-1",
"name": "tailwindcss-react-native",
"description": "Use Tailwindcss in your cross-platform React Native applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"bin": {
"tailwindcss-react-native": "cli/index.js"
},
"homepage": "https://github.com/marklawlor/tailwindcss-react-native#readme",
"keywords": [
"react-native",
"tailwind",
"tailwindcss",
"theme",
"style"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marklawlor/tailwindcss-react-native.git"
},
"author": {
"name": "Mark Lawlor",
"url": "https://github.com/marklawlor"
},
"bugs": {
"url": "https://github.com/marklawlor/tailwindcss-react-native/issues"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc"
},
"files": [
"dist/",
"cli/",
"babel.js",
"types.d.ts"
],
"dependencies": {
"@react-native-community/hooks": "^2.8.1",
"css-mediaquery": "^0.1.2",
"css-to-react-native": "^3.0.0",
"micromatch": "^4.0.5",
"postcss": "^8.4.12",
"postcss-color-functional-notation": "^4.2.2",
"postcss-css-variables": "^0.18.0",
"tempy": "^1.0.1",
"yargs": "^17.4.1"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/plugin-syntax-jsx": "7.16.7",
"@babel/types": "7.17.0",
"@testing-library/react-hooks": "8.0.0",
"@types/css": "0.0.33",
"@types/css-mediaquery": "0.1.1",
"@types/css-to-react-native": "3.0.0",
"@types/jest": "27.4.1",
"@types/micromatch": "4.0.2",
"@types/react": "18.0.8",
"@types/react-native": "0.67.6",
"@types/tailwindcss": "3.0.10",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"babel-plugin-tester": "10.1.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unicorn": "42.0.0",
"jest": "27.5.1",
"metro-react-native-babel-preset": "0.70.2",
"moti": "0.17.1",
"prettier": "2.6.2",
"react": "18.1.0",
"react-native": "0.68.1",
"react-test-renderer": "18.1.0",
"tailwindcss": "3.0.24",
"ts-jest": "27.1.4",
"typescript": "4.6.3"
},
"peerDependencies": {
"tailwindcss": "~3"
}
}