UNPKG

@thednp/dll

Version:

Double Lazy Load for Images, Videos and Background Images.

62 lines 1.61 kB
{ "name": "@thednp/dll", "version": "1.0.11", "description": "Double Lazy Load for Images, Videos and Background Images.", "homepage": "https://thednp.github.io/dll", "author": "thednp", "license": "MIT", "source": "./src/index.ts", "main": "./dist/dll.js", "module": "./dist/dll.mjs", "exports": { ".": { "types": "./dist/dll.d.ts", "require": "./dist/dll.cjs", "import": "./dist/dll.mjs" } }, "repository": { "type": "git", "url": "git+https://github.com/thednp/dll.git" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "keywords": [ "dll", "lazy-load", "image", "video", "typescript" ], "bugs": { "url": "https://github.com/thednp/dll/issues" }, "devDependencies": { "@types/node": "^22.15.23", "typescript": "^5.8.3", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4" }, "dependencies": { "@thednp/shorty": "^2.0.11" }, "packageManager": "pnpm@8.6.12", "engines": { "node": ">=20", "pnpm": ">=8.6.0" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "badges": "npx -p dependency-version-badge update-badge typescript vite", "format": "deno fmt src", "fix:ts": "deno lint src --fix", "lint": "pnpm lint:ts && pnpm check:ts", "lint:ts": "deno lint src", "check:ts": "tsc --noEmit", "build": "pnpm build-vite", "build-vite": "vite build && pnpm build-docs", "build-docs": "cp dist/dll.js docs/assets/js/dll.js && cp dist/dll.js.map docs/assets/js/dll.js.map" } }