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.
43 lines
916 B
43 lines
916 B
2 years ago
|
{
|
||
|
"name": "postcss-js",
|
||
|
"version": "4.0.0",
|
||
|
"description": "PostCSS for CSS-in-JS and styles in JS objects",
|
||
|
"keywords": [
|
||
|
"postcss",
|
||
|
"postcss-runner",
|
||
|
"js",
|
||
|
"inline",
|
||
|
"react",
|
||
|
"css",
|
||
|
"cssinjs"
|
||
|
],
|
||
|
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
||
|
"license": "MIT",
|
||
|
"repository": "postcss/postcss-js",
|
||
|
"engines": {
|
||
|
"node": "^12 || ^14 || >= 16"
|
||
|
},
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"require": "./index.js",
|
||
|
"import": "./index.mjs"
|
||
|
},
|
||
|
"./package.json": "./package.json",
|
||
|
"./async": "./async.js",
|
||
|
"./objectifier": "./objectifier.js",
|
||
|
"./parser": "./parser.js",
|
||
|
"./process-result": "./process-result.js",
|
||
|
"./sync": "./sync.js"
|
||
|
},
|
||
|
"funding": {
|
||
|
"type": "opencollective",
|
||
|
"url": "https://opencollective.com/postcss/"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"postcss": "^8.3.3"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"camelcase-css": "^2.0.1"
|
||
|
}
|
||
|
}
|