package.json 908 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@vben-core/design-tokens",
  3. "version": "5.0.0",
  4. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  5. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  9. "directory": "packages/@vben-core/shared/design-tokens"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm vite build",
  15. "dts": "vue-tsc --declaration --emitDeclarationOnly --declarationDir dist",
  16. "prepublishOnly": "npm run build"
  17. },
  18. "files": [
  19. "dist"
  20. ],
  21. "sideEffects": [
  22. "**/*.css"
  23. ],
  24. "main": "./dist/index.css",
  25. "exports": {
  26. ".": {
  27. "types": "./src/index.ts",
  28. "development": "./src/index.ts",
  29. "default": "./dist/index.css"
  30. }
  31. },
  32. "publishConfig": {
  33. "exports": {
  34. ".": {
  35. "default": "./dist/index.mjs"
  36. }
  37. }
  38. }
  39. }