2017-06-21 09:33:06 -05:00
|
|
|
{
|
2017-10-26 10:12:56 -05:00
|
|
|
"name": "@ionic/angular",
|
2025-06-11 15:37:04 +00:00
|
|
|
"version": "8.6.1",
|
2017-11-21 14:19:02 -06:00
|
|
|
"description": "Angular specific wrappers for @ionic/core",
|
2017-06-21 09:33:06 -05:00
|
|
|
"keywords": [
|
|
|
|
|
"ionic",
|
|
|
|
|
"framework",
|
2018-03-03 16:16:02 -06:00
|
|
|
"angular",
|
2017-06-21 09:33:06 -05:00
|
|
|
"mobile",
|
|
|
|
|
"app",
|
|
|
|
|
"webapp",
|
2018-03-03 16:16:02 -06:00
|
|
|
"capacitor",
|
2017-06-21 09:33:06 -05:00
|
|
|
"cordova",
|
|
|
|
|
"progressive web app",
|
|
|
|
|
"pwa"
|
|
|
|
|
],
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2023-04-24 07:04:10 -06:00
|
|
|
"url": "git+https://github.com/ionic-team/ionic-framework.git"
|
2017-06-21 09:33:06 -05:00
|
|
|
},
|
2019-08-06 12:24:42 -05:00
|
|
|
"bugs": {
|
2024-05-15 17:26:27 -04:00
|
|
|
"url": "https://github.com/ionic-team/ionic-framework/issues"
|
2019-08-06 12:24:42 -05:00
|
|
|
},
|
|
|
|
|
"homepage": "https://ionicframework.com/",
|
2017-11-21 14:19:02 -06:00
|
|
|
"scripts": {
|
2019-12-18 18:43:59 -05:00
|
|
|
"build": "npm run clean && npm run build.ng && npm run build.core && npm run clean-generated",
|
2018-05-22 23:24:18 -05:00
|
|
|
"build.core": "node scripts/build-core.js",
|
2023-02-22 12:33:49 -05:00
|
|
|
"build.ng": "ng-packagr -p ng-package.json -c tsconfig.json",
|
2023-11-09 11:50:19 -05:00
|
|
|
"build.watch": "npm run build.ng -- --watch",
|
2018-03-02 23:57:52 -06:00
|
|
|
"clean": "node scripts/clean.js",
|
|
|
|
|
"clean-generated": "node ./scripts/clean-generated.js",
|
2022-12-02 11:56:16 -05:00
|
|
|
"lint": "npm run eslint && npm run prettier -- --write --cache",
|
2022-09-28 12:41:57 -05:00
|
|
|
"lint.fix": "npm run eslint -- --fix",
|
2022-12-02 11:56:16 -05:00
|
|
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write --cache",
|
2021-10-15 16:54:59 -04:00
|
|
|
"prettier": "prettier \"**/*.ts\"",
|
|
|
|
|
"eslint": "eslint . --ext .ts",
|
2018-03-28 16:20:20 -05:00
|
|
|
"prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next",
|
2022-11-14 13:55:46 -05:00
|
|
|
"sync": "./scripts/sync.sh",
|
2018-03-28 15:35:31 -05:00
|
|
|
"test": "echo 'angular no tests yet'",
|
2018-03-28 16:20:20 -05:00
|
|
|
"tsc": "tsc -p .",
|
|
|
|
|
"validate": "npm i && npm run lint && npm run test && npm run build"
|
2017-11-21 14:19:02 -06:00
|
|
|
},
|
2023-02-28 13:29:40 -05:00
|
|
|
"exports": {
|
|
|
|
|
"./css/*": {
|
|
|
|
|
"style": "./css/*"
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-04-04 16:52:01 +02:00
|
|
|
"dependencies": {
|
2025-06-11 15:37:04 +00:00
|
|
|
"@ionic/core": "^8.6.1",
|
2023-03-07 11:57:18 -05:00
|
|
|
"ionicons": "^7.0.0",
|
2021-10-15 16:54:59 -04:00
|
|
|
"jsonc-parser": "^3.0.0",
|
2023-02-22 12:33:49 -05:00
|
|
|
"tslib": "^2.3.0"
|
2018-04-04 16:52:01 +02:00
|
|
|
},
|
2018-11-27 13:36:59 -05:00
|
|
|
"peerDependencies": {
|
2024-03-15 21:47:04 -04:00
|
|
|
"@angular/core": ">=16.0.0",
|
|
|
|
|
"@angular/forms": ">=16.0.0",
|
|
|
|
|
"@angular/router": ">=16.0.0",
|
2023-02-22 12:33:49 -05:00
|
|
|
"rxjs": ">=7.5.0",
|
2024-03-15 21:47:04 -04:00
|
|
|
"zone.js": ">=0.13.0"
|
2018-11-27 13:36:59 -05:00
|
|
|
},
|
2017-11-21 16:46:22 -06:00
|
|
|
"devDependencies": {
|
2023-11-20 17:20:20 -05:00
|
|
|
"@angular-devkit/core": "^17.0.0",
|
|
|
|
|
"@angular-devkit/schematics": "^17.0.0",
|
2024-03-15 21:47:04 -04:00
|
|
|
"@angular-eslint/eslint-plugin": "^16.0.0",
|
|
|
|
|
"@angular-eslint/eslint-plugin-template": "^16.0.0",
|
|
|
|
|
"@angular-eslint/template-parser": "^16.0.0",
|
|
|
|
|
"@angular/cli": "^16.0.0",
|
|
|
|
|
"@angular/common": "^16.0.0",
|
|
|
|
|
"@angular/compiler": "^16.0.0",
|
|
|
|
|
"@angular/compiler-cli": "^16.0.0",
|
|
|
|
|
"@angular/core": "^16.0.0",
|
|
|
|
|
"@angular/forms": "^16.0.0",
|
|
|
|
|
"@angular/platform-browser": "^16.0.0",
|
|
|
|
|
"@angular/platform-browser-dynamic": "^16.0.0",
|
|
|
|
|
"@angular/router": "^16.0.0",
|
2021-10-15 16:54:59 -04:00
|
|
|
"@ionic/eslint-config": "^0.3.0",
|
|
|
|
|
"@ionic/prettier-config": "^2.0.0",
|
2023-11-20 17:20:20 -05:00
|
|
|
"@schematics/angular": "^17.0.0",
|
2019-12-18 18:43:59 -05:00
|
|
|
"@types/node": "12.12.5",
|
2023-02-22 12:33:49 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
|
|
|
"eslint": "^8.0.0",
|
2021-10-15 16:54:59 -04:00
|
|
|
"eslint-plugin-import": "^2.25.2",
|
2018-07-29 01:44:45 +02:00
|
|
|
"fs-extra": "^7.0.0",
|
2024-03-15 21:47:04 -04:00
|
|
|
"ng-packagr": "^16.0.0",
|
2021-10-15 16:54:59 -04:00
|
|
|
"prettier": "^2.4.1",
|
2023-02-22 12:33:49 -05:00
|
|
|
"rxjs": "~7.5.0",
|
2024-03-15 21:47:04 -04:00
|
|
|
"typescript": "~4.9.3",
|
2023-02-22 12:33:49 -05:00
|
|
|
"typescript-eslint-language-service": "^5.0.0",
|
2024-03-15 21:47:04 -04:00
|
|
|
"zone.js": "~0.13.0"
|
2018-11-27 13:36:59 -05:00
|
|
|
},
|
2021-10-15 16:54:59 -04:00
|
|
|
"prettier": "@ionic/prettier-config",
|
2023-02-22 12:33:49 -05:00
|
|
|
"schematics": "./schematics/collection.json"
|
2017-06-22 14:59:33 -05:00
|
|
|
}
|