package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@tabler/icons-angular",
  3. "version": "3.7.0-alpha.1",
  4. "license": "MIT",
  5. "author": "BG-Software",
  6. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your Angular projects.",
  7. "homepage": "https://tabler.io/icons",
  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-angular"
  19. },
  20. "sideEffects": false,
  21. "scripts": {
  22. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:ng",
  23. "build:icons": "node build.mjs",
  24. "build:ng": "ng build --configuration=production",
  25. "copy:license": "cp ../../LICENSE ./LICENSE",
  26. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  27. "typecheck": "tsc",
  28. "test": "ng test --no-watch --no-progress",
  29. "test:watch": "ng test"
  30. },
  31. "dependencies": {
  32. "@tabler/icons": "^3.7.0"
  33. },
  34. "devDependencies": {
  35. "@angular-devkit/build-angular": "^17.3.3",
  36. "@angular/animations": "^17.3.3",
  37. "@angular/cli": "^17.2.2",
  38. "@angular/common": "^17.3.3",
  39. "@angular/compiler": "^17.3.3",
  40. "@angular/compiler-cli": "^17.3.3",
  41. "@angular/core": "^17.3.3",
  42. "@angular/platform-browser": "^17.3.3",
  43. "@angular/platform-browser-dynamic": "^17.3.3",
  44. "@prettier/sync": "^0.5.1",
  45. "@types/jasmine": "~5.1.0",
  46. "jasmine-core": "~5.1.0",
  47. "karma": "~6.4.0",
  48. "karma-chrome-launcher": "~3.2.0",
  49. "karma-coverage": "~2.2.0",
  50. "karma-jasmine": "~5.1.0",
  51. "karma-jasmine-html-reporter": "~2.1.0",
  52. "ng-packagr": "^17.3.0",
  53. "tslib": "^2.3.0",
  54. "typescript": "~5.3.2",
  55. "zone.js": "~0.14.3"
  56. },
  57. "peerDependencies": {
  58. "@angular/common": "16.x - 18.x",
  59. "@angular/core": "16.x - 18.x"
  60. }
  61. }