package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "main": "./dist/index.js",
  32. "module": "./dist/index.mjs",
  33. "types": "./dist/index.d.ts",
  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. "@tabler/icons": "^3.7.0"
  61. }
  62. }