{
  "name": "stylish-preact",
  "version": "0.2.0",
  "description": "Lightweight extensible styles and themes for Preact apps.",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.mjs",
  "exports": {
    ".": {
      "import": "./lib/esm/index.mjs",
      "require": "./lib/cjs/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/twuni/stylish-preact"
  },
  "author": {
    "email": "devin@canterberry.cc",
    "name": "Devin Canterberry"
  },
  "license": "MIT",
  "scripts": {
    "build": "sh scripts/build",
    "lint": "sh scripts/lint",
    "test": "sh scripts/test"
  },
  "peerDependencies": {
    "htm": ">=3",
    "preact": ">=10"
  },
  "devDependencies": {
    "@babel/cli": "7.16.0",
    "@babel/core": "7.16.0",
    "@babel/preset-env": "7.16.4",
    "c8": "7.10.0",
    "chai": "4.3.4",
    "es-module-shims": "1.3.6",
    "eslint": "8.4.1",
    "eslint-plugin-ante": "1.1.0",
    "jsdom": "19.0.0",
    "mocha": "9.1.3",
    "sinon": "12.0.1",
    "sinon-chai": "3.7.0"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": "> 0.25%, not dead"
        }
      ]
    ]
  },
  "eslintConfig": {
    "env": {
      "browser": true,
      "es6": true
    },
    "extends": [
      "eslint:recommended",
      "plugin:ante/recommended",
      "plugin:ante/style"
    ],
    "parserOptions": {
      "ecmaVersion": "latest",
      "sourceType": "module"
    },
    "plugins": [
      "eslint-plugin-ante"
    ]
  }
}
