Files
flights_web_raw/ClientApp/node_modules/wsl-utils/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

47 lines
865 B
JSON

{
"name": "wsl-utils",
"version": "0.1.0",
"description": "Utilities for working with Windows Subsystem for Linux (WSL)",
"license": "MIT",
"repository": "sindresorhus/wsl-utils",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsc index.d.ts --skipLibCheck"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"wsl",
"windows",
"subsystem",
"linux",
"powershell",
"mount",
"utilities"
],
"dependencies": {
"is-wsl": "^3.1.0"
},
"devDependencies": {
"ava": "^6.3.0",
"typescript": "^5.8.3",
"xo": "^1.0.0"
}
}