Files
nativewind/package.json

108 lines
2.9 KiB
JSON

{
"version": "0.0.0",
"name": "nativewind",
"description": "Use Tailwindcss in your cross-platform React Native applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"react-native",
"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"
},
"homepage": "https://tailwindcss-react-native.vercel.app",
"bugs": {
"url": "https://github.com/marklawlor/tailwindcss-react-native/issues"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"build": "rm -rf dist && tsc"
},
"files": [
"dist/",
"tailwind/",
"postcss.js",
"babel.js",
"plugin.js",
"types.d.ts"
],
"dependencies": {
"@babel/types": "7.18.4",
"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",
"postcss-nested": "^5.0.6",
"react-is": "^18.1.0",
"use-sync-external-store": "^1.1.0"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/plugin-syntax-jsx": "7.17.12",
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@cspell/eslint-plugin": "6.1.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/react-hooks": "8.0.0",
"@testing-library/react-native": "^9.1.0",
"@types/css": "0.0.33",
"@types/css-mediaquery": "0.1.1",
"@types/css-to-react-native": "3.0.0",
"@types/jest": "28.1.1",
"@types/micromatch": "4.0.2",
"@types/react": "18.0.12",
"@types/react-is": "^17.0.3",
"@types/react-native": "0.67.8",
"@types/use-sync-external-store": "^0.0.3",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"babel-plugin-tester": "10.1.0",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unicorn": "42.0.0",
"husky": "8.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"metro-react-native-babel-preset": "0.71.1",
"moti": "0.18.0",
"prettier": "2.7.0",
"react": "18.1.0",
"react-dom": "^18.1.0",
"react-native": "0.68.2",
"react-native-svg": "^12.3.0",
"react-native-web": "0.18.0",
"react-test-renderer": "18.1.0",
"tailwindcss": "3.1.2",
"ts-jest": "28.0.5",
"typescript": "4.7.3"
},
"peerDependencies": {
"tailwindcss": "~3"
}
}