版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

47 строки
1.2 KiB

  1. {
  2. "name": "@windicss/plugin-utils",
  3. "version": "1.8.10",
  4. "description": "Common utils for building integrations of Windi CSS",
  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. "windicss",
  16. "tailwindcss"
  17. ],
  18. "exports": {
  19. ".": {
  20. "require": "./dist/index.js",
  21. "import": "./dist/index.mjs"
  22. },
  23. "./*": "./*"
  24. },
  25. "main": "dist/index.js",
  26. "module": "dist/index.mjs",
  27. "types": "dist/index.d.ts",
  28. "files": [
  29. "dist"
  30. ],
  31. "dependencies": {
  32. "@antfu/utils": "^0.7.2",
  33. "debug": "^4.3.4",
  34. "fast-glob": "^3.2.12",
  35. "magic-string": "^0.27.0",
  36. "micromatch": "^4.0.5",
  37. "windicss": "^3.5.6",
  38. "@windicss/config": "1.8.10"
  39. },
  40. "devDependencies": {
  41. "pug": "^3.0.2"
  42. },
  43. "scripts": {
  44. "build": "tsup src/index.ts --dts --format cjs,esm --no-splitting --external sucrase/register/ts,pug,windicss/utils/style,windicss/utils/parser,windicss/utils",
  45. "dev": "npm run build -- --watch"
  46. }
  47. }