@stylelint/prettier-config
Version:
A Stylelint shareable config for Prettier.
65 lines (64 loc) • 1.52 kB
JSON
{
"name": "@stylelint/prettier-config",
"version": "4.0.0",
"description": "A Stylelint shareable config for Prettier.",
"keywords": [
"prettier",
"prettierconfig"
],
"repository": "stylelint/prettier-config",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/stylelint"
},
{
"type": "github",
"url": "https://github.com/sponsors/stylelint"
}
],
"license": "MIT",
"author": "stylelint",
"type": "module",
"exports": "./prettier.config.js",
"files": [
"prettier.config.js"
],
"scripts": {
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint",
"lint:packagejson": "npmPkgJsonLint .",
"prepare": "husky",
"test": "npm run lint"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md,yml}": "prettier --write"
},
"npmpackagejsonlint": {
"extends": "@stylelint/npm-package-json-lint-config"
},
"dependencies": {
"prettier-plugin-packagejson": "^2.5.19"
},
"devDependencies": {
"@stylelint/npm-package-json-lint-config": "^5.1.0",
"eslint": "^9.36.0",
"eslint-config-stylelint": "^25.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}