CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json49 linesDownload Raw Back to postcss-js
1{2  "name": "postcss-js",3  "version": "4.1.0",4  "description": "PostCSS for CSS-in-JS and styles in JS objects",5  "keywords": [6    "postcss",7    "postcss-runner",8    "js",9    "inline",10    "react",11    "css",12    "cssinjs"13  ],14  "author": "Andrey Sitnik <andrey@sitnik.ru>",15  "license": "MIT",16  "repository": "postcss/postcss-js",17  "engines": {18    "node": "^12 || ^14 || >= 16"19  },20  "exports": {21    ".": {22      "require": "./index.js",23      "import": "./index.mjs"24    },25    "./package.json": "./package.json",26    "./async": "./async.js",27    "./objectifier": "./objectifier.js",28    "./parser": "./parser.js",29    "./process-result": "./process-result.js",30    "./sync": "./sync.js"31  },32  "funding": [33    {34      "type": "opencollective",35      "url": "https://opencollective.com/postcss/"36    },37    {38      "type": "github",39      "url": "https://github.com/sponsors/ai"40    }41  ],42  "peerDependencies": {43    "postcss": "^8.4.21"44  },45  "dependencies": {46    "camelcase-css": "^2.0.1"47  }48}49