1 | {
|
2 | "name": "postcss",
|
3 | "version": "8.4.19",
|
4 | "description": "Tool for transforming styles with JS plugins",
|
5 | "engines": {
|
6 | "node": "^10 || ^12 || >=14"
|
7 | },
|
8 | "exports": {
|
9 | ".": {
|
10 | "require": "./lib/postcss.js",
|
11 | "import": "./lib/postcss.mjs",
|
12 | "types": "./lib/postcss.d.ts"
|
13 | },
|
14 | "./lib/at-rule": "./lib/at-rule.js",
|
15 | "./lib/comment": "./lib/comment.js",
|
16 | "./lib/container": "./lib/container.js",
|
17 | "./lib/css-syntax-error": "./lib/css-syntax-error.js",
|
18 | "./lib/declaration": "./lib/declaration.js",
|
19 | "./lib/fromJSON": "./lib/fromJSON.js",
|
20 | "./lib/input": "./lib/input.js",
|
21 | "./lib/lazy-result": "./lib/lazy-result.js",
|
22 | "./lib/no-work-result": "./lib/no-work-result.js",
|
23 | "./lib/list": "./lib/list.js",
|
24 | "./lib/map-generator": "./lib/map-generator.js",
|
25 | "./lib/node": "./lib/node.js",
|
26 | "./lib/parse": "./lib/parse.js",
|
27 | "./lib/parser": "./lib/parser.js",
|
28 | "./lib/postcss": "./lib/postcss.js",
|
29 | "./lib/previous-map": "./lib/previous-map.js",
|
30 | "./lib/processor": "./lib/processor.js",
|
31 | "./lib/result": "./lib/result.js",
|
32 | "./lib/root": "./lib/root.js",
|
33 | "./lib/rule": "./lib/rule.js",
|
34 | "./lib/stringifier": "./lib/stringifier.js",
|
35 | "./lib/stringify": "./lib/stringify.js",
|
36 | "./lib/symbols": "./lib/symbols.js",
|
37 | "./lib/terminal-highlight": "./lib/terminal-highlight.js",
|
38 | "./lib/tokenize": "./lib/tokenize.js",
|
39 | "./lib/warn-once": "./lib/warn-once.js",
|
40 | "./lib/warning": "./lib/warning.js",
|
41 | "./package.json": "./package.json"
|
42 | },
|
43 | "main": "./lib/postcss.js",
|
44 | "types": "./lib/postcss.d.ts",
|
45 | "keywords": [
|
46 | "css",
|
47 | "postcss",
|
48 | "rework",
|
49 | "preprocessor",
|
50 | "parser",
|
51 | "source map",
|
52 | "transform",
|
53 | "manipulation",
|
54 | "transpiler"
|
55 | ],
|
56 | "funding": [
|
57 | {
|
58 | "type": "opencollective",
|
59 | "url": "https://opencollective.com/postcss/"
|
60 | },
|
61 | {
|
62 | "type": "tidelift",
|
63 | "url": "https://tidelift.com/funding/github/npm/postcss"
|
64 | }
|
65 | ],
|
66 | "author": "Andrey Sitnik <andrey@sitnik.ru>",
|
67 | "license": "MIT",
|
68 | "homepage": "https://postcss.org/",
|
69 | "repository": "postcss/postcss",
|
70 | "bugs": {
|
71 | "url": "https://github.com/postcss/postcss/issues"
|
72 | },
|
73 | "dependencies": {
|
74 | "nanoid": "^3.3.4",
|
75 | "picocolors": "^1.0.0",
|
76 | "source-map-js": "^1.0.2"
|
77 | },
|
78 | "browser": {
|
79 | "./lib/terminal-highlight": false,
|
80 | "source-map-js": false,
|
81 | "path": false,
|
82 | "url": false,
|
83 | "fs": false
|
84 | }
|
85 | }
|