版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
1.0 KiB

  1. {
  2. "name": "@windicss/config",
  3. "version": "1.8.10",
  4. "description": "Windi CSS configurations loader",
  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. "debug": "^4.3.4",
  33. "jiti": "^1.16.0",
  34. "windicss": "^3.5.6"
  35. },
  36. "scripts": {
  37. "build": "tsup src/index.ts --dts --format cjs,esm --no-splitting --external sucrase/register/ts,pug,windicss/utils/style,windicss/utils/parser,windicss/utils",
  38. "dev": "npm run build -- --watch"
  39. }
  40. }