{
  "name": "uinix-theme",
  "version": "3.0.1",
  "description": "Fully configurable framework-agnostic theme system (spec, theme, renderer, themed styles/keyframes/CSS variables) for building UIs.  Your theme your rules 🤘.",
  "license": "MIT",
  "keywords": [
    "uinix",
    "theme",
    "spec",
    "design system",
    "ui system",
    "css"
  ],
  "repository": "uinix-js/uinix-theme",
  "bugs": "https://github.com/uinix-js/uinix-theme/issues",
  "author": "Chris Zhou <chrisrzhou@pm.me> (https://chrisrzhou.io)",
  "funding": [
    {
      "type": "GitHub Sponsors",
      "url": "https://github.com/sponsors/uinix-js"
    }
  ],
  "sideEffects": false,
  "type": "module",
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "lib/",
    "index.js",
    "index.d.ts"
  ],
  "exports": "./index.js",
  "dependencies": {
    "fela": "^12.2.0",
    "fela-dom": "^12.2.0",
    "fela-enforce-longhands": "^12.2.0",
    "fela-monolithic": "^12.2.0",
    "fela-plugin-responsive-value": "^12.2.0",
    "fela-preset-web": "^12.2.0",
    "uinix-fp": "^1.1.0"
  },
  "devDependencies": {
    "c8": "^7.12.0",
    "rimraf": "^3.0.2",
    "tap-spec": "^5.0.0",
    "tape": "^5.6.1",
    "type-coverage": "^2.22.0",
    "typescript": "^4.8.2",
    "xo": "^0.52.3"
  },
  "scripts": {
    "build": "npm run clean && tsc && type-coverage",
    "clean": "npm run clean:typings && npm run clean:typings",
    "clean:typings": "rimraf index.d.ts {lib,test}/**/*.d.ts",
    "lint": "xo --fix",
    "test": "node test/index.js | tap-spec",
    "test:coverage": "c8 --check-coverage --all --100 --reporter lcov npm test",
    "test:ci": "npm run build && npm run lint && npm run test:coverage"
  },
  "prettier": {
    "bracketSpacing": false,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all",
    "useTabs": false
  },
  "typeCoverage": {
    "atLeast": 100,
    "detail": true,
    "ignoreFiles": "test/*.js",
    "strict": true
  },
  "xo": {
    "esnext": false,
    "prettier": true,
    "rules": {
      "unicorn/no-array-callback-reference": "off",
      "unicorn/no-array-reduce": "off"
    },
    "overrides": [
      {
        "files": [
          "test/**/*.js"
        ],
        "rules": {
          "import/no-unassigned-import": "off"
        }
      }
    ]
  }
}
