{
  "name": "stylelint-taro-rn",
  "version": "4.2.0",
  "description": "A collection of React Native specific rules for stylelint",
  "author": "O2Team",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.cjs.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "css",
    "csslint",
    "lint",
    "linter",
    "stylelint",
    "stylelint-plugin"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NervJS/taro.git"
  },
  "engines": {
    "node": ">= 18"
  },
  "dependencies": {
    "react-native-known-styling-properties": "^1.3.0"
  },
  "devDependencies": {
    "lodash": "^4.17.21",
    "stylelint": ">=16.4.0 <=16.10.0"
  },
  "peerDependencies": {
    "stylelint": "^16"
  },
  "scripts": {
    "prod": "pnpm run build",
    "prebuild": "pnpm run clean",
    "clean": "rimraf ./dist",
    "build": "pnpm run rollup --environment NODE_ENV:production",
    "dev": "pnpm run rollup --environment NODE_ENV:development -w",
    "rollup": "rollup --config rollup.config.ts --configPlugin typescript",
    "test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
    "lint": "eslint src --ext .js,.jsx,.ts,.tsx"
  }
}