postcss-first-contiguous/package.json

63 lines
1.4 KiB
JSON

{
"name": "postcss-first-contiguous",
"version": "1.0.0",
"description": "PostCSS plugin to select the first and last contiguous match of a selector",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-first-contiguous",
"postcss-last-contiguous",
"first-contiguous",
"last-contiguous",
"selectors"
],
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"build": "rollup -c rollup.config.mjs",
"build-demo": "node src/demo.js",
"unit": "node --test index.test.js",
"test": "npm run unit && eslint ."
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"author": "hazycora <hazysu@riseup.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.gay/h/postcss-first-contiguous"
},
"homepage": "https://hazy.gay/postcss-first-contiguous",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"postcss": "^8.4.27"
},
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@besties/eslint-config": "^0.2.4",
"@rollup/plugin-babel": "^6.0.4",
"eslint": "^8.55.0",
"postcss-selector-parser": "^6.0.13",
"prettier": "^3.1.1",
"rollup": "^4.9.0",
"tslib": "^2.6.2"
}
}