You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.3 KiB
79 lines
2.3 KiB
{ |
|
"name": "postcss", |
|
"version": "8.4.8", |
|
"description": "Tool for transforming styles with JS plugins", |
|
"engines": { |
|
"node": "^10 || ^12 || >=14" |
|
}, |
|
"exports": { |
|
".": { |
|
"require": "./lib/postcss.js", |
|
"import": "./lib/postcss.mjs", |
|
"types": "./lib/postcss.d.ts" |
|
}, |
|
"./lib/at-rule": "./lib/at-rule.js", |
|
"./lib/comment": "./lib/comment.js", |
|
"./lib/container": "./lib/container.js", |
|
"./lib/css-syntax-error": "./lib/css-syntax-error.js", |
|
"./lib/declaration": "./lib/declaration.js", |
|
"./lib/fromJSON": "./lib/fromJSON.js", |
|
"./lib/input": "./lib/input.js", |
|
"./lib/lazy-result": "./lib/lazy-result.js", |
|
"./lib/no-work-result": "./lib/no-work-result.js", |
|
"./lib/list": "./lib/list.js", |
|
"./lib/map-generator": "./lib/map-generator.js", |
|
"./lib/node": "./lib/node.js", |
|
"./lib/parse": "./lib/parse.js", |
|
"./lib/parser": "./lib/parser.js", |
|
"./lib/postcss": "./lib/postcss.js", |
|
"./lib/previous-map": "./lib/previous-map.js", |
|
"./lib/processor": "./lib/processor.js", |
|
"./lib/result": "./lib/result.js", |
|
"./lib/root": "./lib/root.js", |
|
"./lib/rule": "./lib/rule.js", |
|
"./lib/stringifier": "./lib/stringifier.js", |
|
"./lib/stringify": "./lib/stringify.js", |
|
"./lib/symbols": "./lib/symbols.js", |
|
"./lib/terminal-highlight": "./lib/terminal-highlight.js", |
|
"./lib/tokenize": "./lib/tokenize.js", |
|
"./lib/warn-once": "./lib/warn-once.js", |
|
"./lib/warning": "./lib/warning.js", |
|
"./package.json": "./package.json" |
|
}, |
|
"main": "./lib/postcss.js", |
|
"types": "./lib/postcss.d.ts", |
|
"keywords": [ |
|
"css", |
|
"postcss", |
|
"rework", |
|
"preprocessor", |
|
"parser", |
|
"source map", |
|
"transform", |
|
"manipulation", |
|
"transpiler" |
|
], |
|
"funding": { |
|
"type": "opencollective", |
|
"url": "https://opencollective.com/postcss/" |
|
}, |
|
"author": "Andrey Sitnik <andrey@sitnik.ru>", |
|
"license": "MIT", |
|
"homepage": "https://postcss.org/", |
|
"repository": "postcss/postcss", |
|
"bugs": { |
|
"url": "https://github.com/postcss/postcss/issues" |
|
}, |
|
"dependencies": { |
|
"nanoid": "^3.3.1", |
|
"picocolors": "^1.0.0", |
|
"source-map-js": "^1.0.2" |
|
}, |
|
"browser": { |
|
"./lib/terminal-highlight": false, |
|
"source-map-js": false, |
|
"path": false, |
|
"url": false, |
|
"fs": false |
|
} |
|
}
|
|
|