CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json49 linesDownload Raw Back to autoprefixer
1{2  "name": "autoprefixer",3  "version": "10.5.2",4  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",5  "keywords": [6    "autoprefixer",7    "css",8    "postcss",9    "postcss-plugin",10    "prefix"11  ],12  "bugs": {13    "url": "https://github.com/postcss/autoprefixer/issues"14  },15  "license": "MIT",16  "author": "Andrey Sitnik <andrey@sitnik.es>",17  "repository": "postcss/autoprefixer",18  "funding": [19    {20      "type": "opencollective",21      "url": "https://opencollective.com/postcss/"22    },23    {24      "type": "tidelift",25      "url": "https://tidelift.com/funding/github/npm/autoprefixer"26    },27    {28      "type": "github",29      "url": "https://github.com/sponsors/ai"30    }31  ],32  "bin": "bin/autoprefixer",33  "main": "lib/autoprefixer.js",34  "types": "lib/autoprefixer.d.ts",35  "dependencies": {36    "browserslist": "^4.28.4",37    "caniuse-lite": "^1.0.30001799",38    "fraction.js": "^5.3.4",39    "picocolors": "^1.1.1",40    "postcss-value-parser": "^4.2.0"41  },42  "peerDependencies": {43    "postcss": "^8.1.0"44  },45  "engines": {46    "node": "^10 || ^12 || >=14"47  }48}49