package.json raw

   1  {
   2    "name": "responsive-variants",
   3    "version": "1.0.0",
   4    "description": "Responsive image variant generation and selection per NIP-XX",
   5    "main": "dist/index.js",
   6    "module": "dist/index.mjs",
   7    "types": "dist/index.d.ts",
   8    "exports": {
   9      ".": {
  10        "import": "./dist/index.mjs",
  11        "require": "./dist/index.js",
  12        "types": "./dist/index.d.ts"
  13      }
  14    },
  15    "files": [
  16      "dist",
  17      "src"
  18    ],
  19    "scripts": {
  20      "build": "tsup src/index.ts --format cjs,esm --dts",
  21      "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
  22      "typecheck": "tsc --noEmit"
  23    },
  24    "devDependencies": {
  25      "tsup": "^8.0.0",
  26      "typescript": "^5.3.0"
  27    },
  28    "keywords": [
  29      "nostr",
  30      "blossom",
  31      "responsive-images",
  32      "nip-94",
  33      "nip-xx"
  34    ],
  35    "license": "MIT"
  36  }
  37