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