package.json 1003 B

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