Files
flights_web_raw/ClientApp/node_modules/prettier-plugin-organize-imports/package.json
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- Angular 12 application with PrimeNG components
- 5 existing Cypress e2e test suites
- SCSS styling with BEM naming convention
- i18n support (10 languages)
- Leaflet map integration
- Complete component hierarchy and routing structure

This baseline will be used for Angular → React migration.
2026-04-05 18:47:57 +03:00

66 lines
1.5 KiB
JSON

{
"name": "prettier-plugin-organize-imports",
"version": "3.2.4",
"description": "Make prettier organize your imports using the TypeScript language service API.",
"keywords": [
"prettier",
"prettier-plugin",
"typescript",
"imports",
"organize-imports"
],
"main": "index.js",
"scripts": {
"test": "ava --verbose",
"preversion": "npm test"
},
"files": [
"index.js",
"lib",
"prettier.d.ts"
],
"author": "Simon Haenisch (https://github.com/simonhaenisch)",
"license": "MIT",
"repository": "simonhaenisch/prettier-plugin-organize-imports",
"homepage": "https://github.com/simonhaenisch/prettier-plugin-organize-imports#readme",
"peerDependencies": {
"@volar/vue-language-plugin-pug": "^1.0.4",
"@volar/vue-typescript": "^1.0.4",
"prettier": ">=2.0",
"typescript": ">=2.9"
},
"peerDependenciesMeta": {
"@volar/vue-language-plugin-pug": {
"optional": true
},
"@volar/vue-typescript": {
"optional": true
}
},
"devDependencies": {
"@types/node": "20.8.10",
"@volar/vue-language-plugin-pug": "1.0.9",
"@volar/vue-typescript": "1.0.9",
"ava": "3.15.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"package.json",
"*.md"
],
"options": {
"useTabs": false
}
}
]
}
}