package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "rollup-plugin-stdf-icon",
  3. "version": "0.1.0",
  4. "description": "A Rollup plugin that combines a series of svg into one symbol for use in the STDF project",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "rollup -c",
  9. "test": "node test/index.js"
  10. },
  11. "type": "module",
  12. "author": "any-tdf",
  13. "funding": "https://stdf.design?fund",
  14. "license": "MIT",
  15. "homepage": "https://github.com/any-tdf/stdf/blob/main/packages/rollup-plugin-stdf-icon/README.md",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/any-tdf/stdf"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+icon"
  22. },
  23. "files": [
  24. "dist/**"
  25. ],
  26. "engines": {
  27. "node": ">=14.14"
  28. },
  29. "dependencies": {
  30. "fs-extra": "^11.2.0",
  31. "svgo": "^3.3.2",
  32. "svgstore": "^3.0.1"
  33. },
  34. "devDependencies": {
  35. "@rollup/plugin-terser": "^0.4.4",
  36. "@rollup/plugin-typescript": "^12.1.1",
  37. "@types/fs-extra": "^11.0.4",
  38. "@types/node": "^22.10.2",
  39. "rollup": "^4.28.1",
  40. "typescript": "^5.7.2"
  41. },
  42. "keywords": [
  43. "stdf",
  44. "rollup",
  45. "symbol",
  46. "sprite",
  47. "vite",
  48. "svg",
  49. "icon"
  50. ]
  51. }