package.json 1017 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@sv-print/plugin-text-auto",
  3. "version": "0.1.5",
  4. "description": "",
  5. "type": "module",
  6. "main": "./dist/index.js",
  7. "svelte": "./dist/index.mjs",
  8. "jsdelivr": "./dist/index.umd.js",
  9. "unpkg": "./dist/index.umd.js",
  10. "module": "./dist/index.mjs",
  11. "types": "./dist/index.d.ts",
  12. "exports": {
  13. ".": {
  14. "types": "./dist/index.d.ts",
  15. "import": "./dist/index.mjs",
  16. "require": "./dist/index.umd.js"
  17. }
  18. },
  19. "files": [
  20. "dist"
  21. ],
  22. "scripts": {
  23. "build": "vite build && tsc src/index.ts --declaration --emitDeclarationOnly --outDir dist",
  24. "build-browserify": "vite build --mode=browserify",
  25. "pub": "pnpm build && npm --registry https://registry.npmjs.org/ publish --access public",
  26. "pub-beta": "pnpm build && npm --registry https://registry.npmjs.org/ publish --access public --tag beta"
  27. },
  28. "keywords": [
  29. "sv-print",
  30. "hiprint"
  31. ],
  32. "author": "",
  33. "license": "MIT",
  34. "dependencies": {
  35. "sv-print": "^0.1.28",
  36. "vite": "^6.4.1"
  37. }
  38. }