Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/image-size/package.json
Eric FELIXINE e30ae8ed09 feat(smart-app): implement complete mobile app MVP
- App.tsx: full navigation (Auth stack + Main tabs with 5 screens)
- Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen
- HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors
- MapScreen: interactive map with layer toggles (6 layers)
- MarketplaceScreen: categories (6), products (5), search
- ChatScreen: AI chat with quick prompts (4), bot responses
- ProfileScreen: user info, stats, menu (9 items), logout
- AlertsScreen: alert list with severity, acknowledge
- SensorsScreen: sensor list with type filters (6 types), search
- ZonesScreen: zone cards with stats
- SettingsScreen: language picker (FR/EN/ES/DE), privacy, about
- Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n
- Hooks: useSensors, useAlerts, useNotifications, useLocation
- Components: Card, Button, LoadingSpinner, ErrorBoundary, Header
- Services: iotService, notificationService (with axios API client)
- Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN)
- Theme: colors.ts with full design system (Blue Ocean palette)
- Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
2026-06-01 18:00:35 -04:00

82 lines
1.7 KiB
JSON

{
"name": "image-size",
"version": "1.2.1",
"description": "get dimensions of any image file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin/image-size.js"
],
"engines": {
"node": ">=16.x"
},
"packageManager": "yarn@4.0.2",
"bin": "bin/image-size.js",
"scripts": {
"lint": "eslint bin lib specs",
"format": "prettier --write lib specs eslint.config.mjs",
"test": "nyc mocha",
"clean": "rm -rf dist docs",
"generate-docs": "typedoc",
"build": "tsc",
"prepack": "yarn clean && yarn build"
},
"keywords": [
"image",
"size",
"dimensions",
"resolution",
"width",
"height",
"avif",
"bmp",
"cur",
"gif",
"heic",
"heif",
"icns",
"ico",
"jpeg",
"jxl",
"png",
"psd",
"svg",
"tga",
"tiff",
"webp"
],
"repository": "git://github.com/image-size/image-size.git",
"author": "netroy <aditya@netroy.in> (http://netroy.in/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.5.0",
"@types/chai": "4.3.16",
"@types/eslint__js": "8.42.3",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.7",
"@types/node": "18.19.39",
"@types/sinon": "17.0.3",
"chai": "4.4.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"glob": "10.4.2",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.3.2",
"sinon": "17.0.1",
"ts-node": "10.9.2",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"typescript-eslint": "7.13.1"
},
"nyc": {
"include": "lib",
"exclude": "specs/*.spec.ts"
},
"dependencies": {
"queue": "6.0.2"
}
}