1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "vite-plugin-windicss",
- "version": "1.8.10",
- "description": "Windi CSS for Vite, it's fast!",
- "author": "antfu <anthonyfu117@hotmail.com>",
- "license": "MIT",
- "funding": "https://github.com/sponsors/antfu",
- "homepage": "https://github.com/antfu/vite-plugin-windicss",
- "repository": {
- "type": "git",
- "url": "https://github.com/antfu/vite-plugin-windicss"
- },
- "bugs": "https://github.com/antfu/vite-plugin-windicss/issues",
- "keywords": [
- "vite",
- "vite-plugin",
- "windicss",
- "tailwindcss"
- ],
- "exports": {
- ".": {
- "require": "./dist/index.js",
- "import": "./dist/index.mjs"
- },
- "./*": "./*",
- "./client": {
- "require": "./dist/client.js",
- "import": "./dist/client.mjs"
- }
- },
- "main": "dist/index.js",
- "module": "dist/index.mjs",
- "types": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "peerDependencies": {
- "vite": "^2.0.1 || ^3.0.0 || ^4.0.0"
- },
- "dependencies": {
- "debug": "^4.3.4",
- "kolorist": "^1.6.0",
- "windicss": "^3.5.6",
- "@windicss/plugin-utils": "1.8.10"
- },
- "devDependencies": {
- "vite": "^4.0.1"
- },
- "scripts": {
- "build": "tsup src/index.ts src/client.ts --dts --format cjs,esm --no-splitting",
- "dev": "npm run build -- --watch"
- }
- }
|