package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "vite-plugin-windicss",
  3. "version": "1.8.10",
  4. "description": "Windi CSS for Vite, it's fast!",
  5. "author": "antfu <anthonyfu117@hotmail.com>",
  6. "license": "MIT",
  7. "funding": "https://github.com/sponsors/antfu",
  8. "homepage": "https://github.com/antfu/vite-plugin-windicss",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/antfu/vite-plugin-windicss"
  12. },
  13. "bugs": "https://github.com/antfu/vite-plugin-windicss/issues",
  14. "keywords": [
  15. "vite",
  16. "vite-plugin",
  17. "windicss",
  18. "tailwindcss"
  19. ],
  20. "exports": {
  21. ".": {
  22. "require": "./dist/index.js",
  23. "import": "./dist/index.mjs"
  24. },
  25. "./*": "./*",
  26. "./client": {
  27. "require": "./dist/client.js",
  28. "import": "./dist/client.mjs"
  29. }
  30. },
  31. "main": "dist/index.js",
  32. "module": "dist/index.mjs",
  33. "types": "dist/index.d.ts",
  34. "files": [
  35. "dist"
  36. ],
  37. "peerDependencies": {
  38. "vite": "^2.0.1 || ^3.0.0 || ^4.0.0"
  39. },
  40. "dependencies": {
  41. "debug": "^4.3.4",
  42. "kolorist": "^1.6.0",
  43. "windicss": "^3.5.6",
  44. "@windicss/plugin-utils": "1.8.10"
  45. },
  46. "devDependencies": {
  47. "vite": "^4.0.1"
  48. },
  49. "scripts": {
  50. "build": "tsup src/index.ts src/client.ts --dts --format cjs,esm --no-splitting",
  51. "dev": "npm run build -- --watch"
  52. }
  53. }