CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json59 linesDownload Raw Back to typography
1{2  "name": "@tailwindcss/typography",3  "version": "0.5.20",4  "description": "A Tailwind CSS plugin for automatically styling plain HTML content with beautiful typographic defaults.",5  "main": "src/index.js",6  "types": "src/index.d.ts",7  "files": [8    "src/*.js",9    "src/*.d.ts",10    "dist/"11  ],12  "repository": "https://github.com/tailwindlabs/tailwindcss-typography",13  "license": "MIT",14  "publishConfig": {15    "access": "public"16  },17  "prettier": {18    "printWidth": 100,19    "semi": false,20    "singleQuote": true,21    "trailingComma": "es5"22  },23  "scripts": {24    "test": "jest",25    "dev": "next dev demo",26    "build": "next build demo",27    "export": "next export demo",28    "start": "next start demo",29    "release-channel": "node ./scripts/release-channel.js",30    "release-notes": "node ./scripts/release-notes.js"31  },32  "peerDependencies": {33    "tailwindcss": ">=3.0.0 || >=4.0.0 || insiders"34  },35  "devDependencies": {36    "@mdx-js/loader": "^1.0.19",37    "@mdx-js/mdx": "^1.6.6",38    "@next/mdx": "^8.1.0",39    "autoprefixer": "^10.2.1",40    "highlight.js": "^10.4.1",41    "jest": "^29.7.0",42    "jest-diff": "^27.3.1",43    "next": "^12.0.1",44    "postcss": "^8.2.3",45    "prettier": "^2.1.2",46    "react": "^17.0.2",47    "react-dom": "^17.0.2",48    "tailwindcss": "^3.2.2"49  },50  "dependencies": {51    "postcss-selector-parser": "6.0.10"52  },53  "jest": {54    "setupFilesAfterEnv": [55      "<rootDir>/jest/customMatchers.js"56    ]57  }58}59