Files
nativewind/package.json
2022-05-05 11:39:52 +10:00

96 lines
2.5 KiB
JSON

{
"version": "1.0.0-2",
"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,
"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",
"prepare": "husky install",
"build": "rm -rf dist && tsc"
},
"files": [
"dist/",
"postcss.js",
"babel.js",
"plugin.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-calc": "^8.2.4",
"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.10",
"@babel/plugin-syntax-jsx": "7.16.7",
"@babel/types": "7.17.10",
"@testing-library/react-hooks": "8.0.0",
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/css": "0.0.33",
"@types/css-mediaquery": "0.1.1",
"@types/css-to-react-native": "3.0.0",
"@types/jest": "27.5.0",
"@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.22.0",
"@typescript-eslint/parser": "5.22.0",
"babel-plugin-tester": "10.1.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unicorn": "42.0.0",
"husky": "7.0.4",
"jest": "28.0.3",
"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": "28.0.1",
"typescript": "4.6.4"
},
"peerDependencies": {
"tailwindcss": "~3"
}
}