@codefast/image-loader
Version:
Flexible image loader for Next.js supporting multiple CDN providers
88 lines • 2.18 kB
JSON
{
"name": "@codefast/image-loader",
"version": "0.3.6",
"description": "Flexible image loader for Next.js supporting multiple CDN providers",
"keywords": [
"next",
"image-loader",
"cdn",
"image-optimization",
"typescript",
"monorepo",
"solid-principles"
],
"homepage": "https://github.com/codefastlabs/codefast/tree/main/packages/image-loader#readme",
"bugs": {
"url": "https://github.com/codefastlabs/codefast/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefastlabs/codefast.git",
"directory": "packages/image-loader"
},
"license": "MIT",
"author": "Vuong Phan <mr.thevuong@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.cts"
}
}
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"dependencies": {
"query-string": "^7.1.3"
},
"devDependencies": {
"@rslib/core": "^0.10.5",
"@swc/core": "^1.12.14",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.14",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"jiti": "^2.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"@codefast/eslint-config": "0.3.6",
"@codefast/typescript-config": "0.3.6"
},
"peerDependencies": {
"next": "^15.4.1"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rslib build",
"clean": "rm -rf dist",
"dev": "rslib build --watch",
"lint": "TIMING=1 eslint --max-warnings 0 .",
"lint:fix": "TIMING=1 eslint --max-warnings 0 --fix .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:ci": "jest --coverage --ci",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit"
}
}