package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@tabler/icons-vue",
  3. "version": "3.5.0",
  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-vue"
  19. },
  20. "main": "./dist/cjs/tabler-icons-vue.cjs",
  21. "module": "./dist/esm/tabler-icons-vue.mjs",
  22. "types": "./dist/esm/tabler-icons-vue.d.ts",
  23. "files": [
  24. "dist"
  25. ],
  26. "scripts": {
  27. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles",
  28. "build:icons": "node build.mjs",
  29. "build:bundles": "rollup -c ./rollup.config.mjs",
  30. "copy:license": "cp ../../LICENSE ./LICENSE",
  31. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  32. "test": "vitest run",
  33. "imports-check": "attw $(npm pack)"
  34. },
  35. "dependencies": {
  36. "@tabler/icons": "3.5.0"
  37. },
  38. "peerDependencies": {
  39. "vue": ">=3.0.1"
  40. },
  41. "devDependencies": {
  42. "@testing-library/vue": "^8.0.2",
  43. "@vitejs/plugin-vue": "^5.0.4",
  44. "@vue/compiler-sfc": "^3.4.20",
  45. "@vue/test-utils": "2.4.4",
  46. "vue": "^3.4.20"
  47. }
  48. }