UNPKG

postcss-calc

Version:
64 lines 1.55 kB
{ "name": "postcss-calc", "version": "11.0.0", "type": "module", "description": "PostCSS plugin to reduce calc()", "keywords": [ "css", "postcss", "postcss-plugin", "calculation", "calc" ], "homepage": "https://github.com/postcss/postcss-calc", "repository": { "type": "git", "url": "https://github.com/postcss/postcss-calc.git" }, "exports": { ".": { "types": "./types/index.d.ts", "default": "./src/index.js" } }, "files": [ "src", "types", "LICENSE" ], "author": "Andy Jansson", "license": "MIT", "engines": { "node": "^22.22.3 || ^24.15 || >=26.0" }, "devEngines": { "packageManager": { "name": "pnpm", "version": "11.22.0" } }, "devDependencies": { "@csstools/css-calc": "^3.3.0", "@rmenke/css-tokenizer-tests": "^1.2.0", "@types/node": "^26.2.0", "fast-check": "^4.9.0", "oxfmt": "^0.64.0", "oxlint": "^1.79.0", "postcss": "^8.5.26", "typescript": "~7.0.2" }, "dependencies": { "@csstools/css-parser-algorithms": "^4.0.0", "@csstools/css-tokenizer": "^4.0.0" }, "peerDependencies": { "postcss": "^8.5.25" }, "scripts": { "lint": "oxlint . && tsc && oxfmt --check", "fmt": "oxfmt", "test": "node --test --test-reporter=dot 'test/**/*.test.mjs' test/index.cjs test/convertUnit.cjs", "test:mutation:corpus": "node test/mutation/corpus-selection.mjs", "test:corpus:full": "POSTCSS_CALC_FULL_CORPUS=1 node --test test/conformance/corpus.test.mjs" } }