CoolFace
Apppublic

TrinetraLabs/Placebo_AI

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes
package.json82 linesDownload Raw Back to image-size
1{2  "name": "image-size",3  "version": "1.2.1",4  "description": "get dimensions of any image file",5  "main": "dist/index.js",6  "types": "dist/index.d.ts",7  "files": [8    "dist",9    "bin/image-size.js"10  ],11  "engines": {12    "node": ">=16.x"13  },14  "packageManager": "yarn@4.0.2",15  "bin": "bin/image-size.js",16  "scripts": {17    "lint": "eslint bin lib specs",18    "format": "prettier --write lib specs eslint.config.mjs",19    "test": "nyc mocha",20    "clean": "rm -rf dist docs",21    "generate-docs": "typedoc",22    "build": "tsc",23    "prepack": "yarn clean && yarn build"24  },25  "keywords": [26    "image",27    "size",28    "dimensions",29    "resolution",30    "width",31    "height",32    "avif",33    "bmp",34    "cur",35    "gif",36    "heic",37    "heif",38    "icns",39    "ico",40    "jpeg",41    "jxl",42    "png",43    "psd",44    "svg",45    "tga",46    "tiff",47    "webp"48  ],49  "repository": "git://github.com/image-size/image-size.git",50  "author": "netroy <aditya@netroy.in> (http://netroy.in/)",51  "license": "MIT",52  "devDependencies": {53    "@eslint/js": "9.5.0",54    "@types/chai": "4.3.16",55    "@types/eslint__js": "8.42.3",56    "@types/glob": "8.1.0",57    "@types/mocha": "10.0.7",58    "@types/node": "18.19.39",59    "@types/sinon": "17.0.3",60    "chai": "4.4.1",61    "eslint": "8.57.0",62    "eslint-config-prettier": "9.1.0",63    "eslint-plugin-prettier": "5.1.3",64    "glob": "10.4.2",65    "mocha": "10.2.0",66    "nyc": "15.1.0",67    "prettier": "3.3.2",68    "sinon": "17.0.1",69    "ts-node": "10.9.2",70    "typedoc": "0.25.13",71    "typescript": "5.4.5",72    "typescript-eslint": "7.13.1"73  },74  "nyc": {75    "include": "lib",76    "exclude": "specs/*.spec.ts"77  },78  "dependencies": {79    "queue": "6.0.2"80  }81}82