Files
ionic-framework/packages/angular/package.json
Sean Perkins 282ef4cd48 chore: upgrade ng-packagr to 15.2.0
Prior to this version, ng-packgr had a bad glob pattern that would process all readme files, even those in the node_modules directory. Combine this with hoisted dependencies with pnpm and you have a very bad time.
2024-02-01 23:00:55 -05:00

97 lines
3.1 KiB
JSON

{
"name": "@ionic/angular",
"version": "7.6.6",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
"framework",
"angular",
"mobile",
"app",
"webapp",
"capacitor",
"cordova",
"progressive web app",
"pwa"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic-framework.git"
},
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"homepage": "https://ionicframework.com/",
"scripts": {
"build": "pnpm clean && pnpm build.ng && pnpm build.schematics && pnpm copy && pnpm clean-generated",
"build.schematics": "cd ../angular-schematics && pnpm build",
"build.ng": "ng-packagr -p ng-package.json -c tsconfig.json",
"build.watch": "pnpm copy.css && pnpm build.ng --watch",
"copy": "pnpm copy.css && pnpm copy.schematics",
"copy.css": "node scripts/copy-css.js",
"copy.schematics": "cp -r ../angular-schematics/dist/ ./dist/schematics",
"clean": "node scripts/clean.js",
"clean-generated": "node ./scripts/clean-generated.js",
"lint": "pnpm run eslint && pnpm run prettier --write --cache",
"lint.fix": "pnpm run eslint --fix",
"fmt": "pnpm run eslint --fix && pnpm run prettier --write --cache",
"prettier": "prettier \"**/*.ts\"",
"eslint": "eslint . --ext .ts",
"prerelease": "pnpm run validate && np prerelease --yolo --any-branch --tag next",
"test": "echo 'angular no tests yet'",
"tsc": "tsc -p .",
"validate": "pnpm i && pnpm run lint && pnpm run test && pnpm run build"
},
"exports": {
"./css/*": {
"style": "./css/*"
}
},
"dependencies": {
"@ionic/core": "workspace:*",
"ionicons": "^7.0.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=14.0.0",
"@angular/forms": ">=14.0.0",
"@angular/router": ">=14.0.0",
"rxjs": ">=7.5.0",
"zone.js": ">=0.11.0"
},
"devDependencies": {
"@angular-devkit/core": "^17.0.0",
"@angular-devkit/schematics": "^17.0.0",
"@angular-eslint/eslint-plugin": "^14.0.0",
"@angular-eslint/eslint-plugin-template": "^14.0.0",
"@angular-eslint/template-parser": "^14.0.0",
"@angular/cli": "^17.0.7",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/compiler-cli": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/forms": "^14.3.0",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^2.0.0",
"@types/node": "12.12.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.25.2",
"fs-extra": "^7.0.0",
"glob": "^10.3.10",
"ng-packagr": "^15.2.0",
"prettier": "^2.4.1",
"rxjs": "~7.5.0",
"typescript": "~4.7.2",
"typescript-eslint-language-service": "^5.0.0",
"zone.js": "~0.11.4"
},
"prettier": "@ionic/prettier-config",
"schematics": "./schematics/collection.json"
}