{
  "name": "more-sass",
  "description": "The library of useful SCSS mixins and functions",
  "type": "module",
  "private": false,
  "version": "3.0.0-rc.0",
  "engines": {
    "node": ">=14"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "author": {
    "name": "Maxim Morev",
    "email": "max.seainside@gmail.com"
  },
  "contributors": [
    {
      "name": "Andrey Litvinov",
      "email": "fro1d616@gmail.com"
    }
  ],
  "homepage": "https://github.com/MorevM/more-sass#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/MorevM/more-sass/"
  },
  "bugs": {
    "url": "https://github.com/MorevM/more-sass/issues"
  },
  "keywords": [
    "sass",
    "mixins"
  ],
  "files": [
    "_index.scss",
    "src/**/!(*.test).scss"
  ],
  "main": "src/_index.scss",
  "sass": "./src/_index.scss",
  "style": "./src/_index.scss",
  "peerDependencies": {
    "sass": "^1.49.8"
  },
  "devDependencies": {
    "@cspell/dict-ru_ru": "^2.3.2",
    "@morev/commitlint-config": "^0.2.2",
    "@morev/eslint-config": "^42.0.2",
    "@morev/stylelint-config": "^9.0.2",
    "@release-it/conventional-changelog": "8",
    "cspell": "^10.0.1",
    "eslint": "^10.6.0",
    "glob": "^13.0.6",
    "lefthook": "^2.1.9",
    "release-it": "^20.2.1",
    "sass": "^1.100.0",
    "sass-true": "^10.1.0",
    "stylelint": "^17.14.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "lint": "pnpm lint:stylelint && pnpm lint:eslint",
    "lint:fix": "pnpm lint:stylelint:fix && pnpm lint:eslint:fix",
    "lint:stylelint": "stylelint \"src/**/*.scss\" --allow-empty-input",
    "lint:stylelint:fix": "stylelint \"src/**/*.scss\" --allow-empty-input --fix",
    "lint:eslint": "eslint .",
    "lint:eslint:fix": "eslint . --fix",
    "typecheck": "pnpm run typecheck:src && pnpm run typecheck:docs",
    "typecheck:docs": "pnpm --dir docs run typecheck",
    "typecheck:src": "tsc --noEmit",
    "spellcheck": "cspell --no-progress --show-suggestions --unique",
    "test": "vitest",
    "docs": "cd ./docs && pnpm dev",
    "release": "release-it --disable-metrics"
  }
}