1
0

package.json 868 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vben-core/constants",
  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/constants"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm unbuild",
  15. "stub": "pnpm unbuild --stub"
  16. },
  17. "files": [
  18. "dist"
  19. ],
  20. "sideEffects": false,
  21. "main": "./dist/index.mjs",
  22. "module": "./dist/index.mjs",
  23. "exports": {
  24. ".": {
  25. "types": "./src/index.ts",
  26. "development": "./src/index.ts",
  27. "default": "./dist/index.mjs"
  28. }
  29. },
  30. "publishConfig": {
  31. "exports": {
  32. ".": {
  33. "types": "./dist/index.d.ts",
  34. "default": "./dist/index.mjs"
  35. }
  36. }
  37. }
  38. }