mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-08-29 10:18:24 +02:00
* chore: upgrade eslint to v9 latest with compatible lint deps Agent-Logs-Url: https://github.com/lucide-icons/lucide/sessions/f7c1f1b5-d213-4afa-91a8-b799a16397ec * Fix eslint config * Fix a lot of eslint errors * Fix eslint * Fix eslint errors * Fix eslint errors * Fix types * Fix eslint warning * Format code * Add eslint 10 * Remove unused vars * Update pnpm * Update deps --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
70 lines
2.2 KiB
JSON
70 lines
2.2 KiB
JSON
{
|
|
"name": "@lucide/angular",
|
|
"description": "A Lucide icon library package for Angular applications.",
|
|
"version": "0.0.1",
|
|
"author": "karsa-mistmere",
|
|
"license": "ISC",
|
|
"homepage": "https://lucide.dev",
|
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lucide-icons/lucide.git",
|
|
"directory": "packages/angular"
|
|
},
|
|
"publishConfig": {
|
|
"directory": "dist"
|
|
},
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"watch": "ng build --watch --configuration development",
|
|
"prebuild": "pnpm clean && pnpm copy:license && pnpm build:icons",
|
|
"build": "pnpm prebuild && pnpm build:ng",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf ./src/icons/*.ts",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --iconFileExtension=.ts --exportFileName=lucide-angular.ts --useDefaultExports=0",
|
|
"build:ng": "ng build --configuration production",
|
|
"test": "pnpm build:icons && ng test --no-watch",
|
|
"test:watch": "ng test",
|
|
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,html,css,scss}' --quiet --fix",
|
|
"e2e": "ng e2e"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"overrides": [
|
|
{
|
|
"files": "*.html",
|
|
"options": {
|
|
"parser": "angular"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@angular-eslint/builder": "~21.4.0",
|
|
"@angular-eslint/schematics": "~21.4.0",
|
|
"@angular/build": "^21.2.19",
|
|
"@angular/cli": "^21.2.19",
|
|
"@angular/common": "^21.2.19",
|
|
"@angular/compiler": "^21.2.19",
|
|
"@angular/compiler-cli": "^21.2.19",
|
|
"@angular/core": "^21.2.19",
|
|
"@angular/forms": "^21.2.19",
|
|
"@angular/platform-browser": "^21.2.19",
|
|
"@angular/platform-server": "^21.2.19",
|
|
"@angular/router": "^21.2.19",
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@lucide/helpers": "workspace:*",
|
|
"@vitest/browser-playwright": "^4.1.10",
|
|
"angular-eslint": "21.4.0",
|
|
"ng-packagr": "^21.2.5",
|
|
"rxjs": "~7.8.2",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/common": ">=17.0.0",
|
|
"@angular/core": ">=17.0.0"
|
|
}
|
|
}
|