package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@tabler/icons-preact",
  3. "version": "3.0.0-beta",
  4. "license": "MIT",
  5. "author": "codecalm",
  6. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  7. "homepage": "https://tabler-icons.io",
  8. "bugs": {
  9. "url": "https://github.com/tabler/tabler-icons/issues"
  10. },
  11. "funding": {
  12. "type": "github",
  13. "url": "https://github.com/sponsors/codecalm"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/tabler/tabler-icons.git",
  18. "directory": "packages/icons-preact"
  19. },
  20. "amdName": "tabler-icons-preact",
  21. "main": "dist/cjs/tabler-icons-preact.js",
  22. "main:umd": "dist/umd/tabler-icons-preact.js",
  23. "module": "dist/esm/tabler-icons-preact.js",
  24. "unpkg": "dist/umd/tabler-icons-preact.min.js",
  25. "typings": "dist/tabler-icons-preact.d.ts",
  26. "files": [
  27. "dist"
  28. ],
  29. "sideEffects": false,
  30. "scripts": {
  31. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
  32. "build:icons": "node build.mjs",
  33. "build:bundles": "rollup -c ./rollup.config.mjs",
  34. "copy:license": "cp ../../LICENSE ./LICENSE",
  35. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  36. "test": "vitest run",
  37. "typecheck": "tsc"
  38. },
  39. "dependencies": {
  40. "@tabler/icons": "3.0.0-beta"
  41. },
  42. "peerDependencies": {
  43. "preact": "^10.5.13"
  44. },
  45. "devDependencies": {
  46. "@babel/preset-env": "7.11.5",
  47. "@preact/preset-vite": "^2.8.1",
  48. "@testing-library/preact": "^3.2.3",
  49. "babel-jest": "^29.4.1",
  50. "babel-preset-preact": "^2.0.0",
  51. "preact": "^10.5.13"
  52. }
  53. }