1 | {
|
---|
2 | "name": "postcss",
|
---|
3 | "version": "8.3.6",
|
---|
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/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 | "type": "opencollective",
|
---|
57 | "url": "https://opencollective.com/postcss/"
|
---|
58 | },
|
---|
59 | "author": "Andrey Sitnik <andrey@sitnik.ru>",
|
---|
60 | "license": "MIT",
|
---|
61 | "homepage": "https://postcss.org/",
|
---|
62 | "repository": "postcss/postcss",
|
---|
63 | "dependencies": {
|
---|
64 | "colorette": "^1.2.2",
|
---|
65 | "nanoid": "^3.1.23",
|
---|
66 | "source-map-js": "^0.6.2"
|
---|
67 | },
|
---|
68 | "browser": {
|
---|
69 | "./lib/terminal-highlight": false,
|
---|
70 | "source-map-js": false,
|
---|
71 | "colorette": false,
|
---|
72 | "path": false,
|
---|
73 | "url": false,
|
---|
74 | "fs": false
|
---|
75 | }
|
---|
76 | }
|
---|