UNPKG

@jvddavid/cloudflare-images

Version:
81 lines 1.92 kB
{ "name": "@jvddavid/cloudflare-images", "license": "MIT", "version": "1.0.5", "description": "Cloudflare Images API wrapper", "keywords": [ "cloudflare", "cf", "images", "image", "api", "wrapper", "typescript", "javascript", "upload", "download" ], "author": { "name": "João Victor Davi de Oliveira", "email": "j.victordavid2@gmail.com", "url": "https://github.com/jvddavid/cloudflare-images" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/jvddavid/cloudflare-images.git" }, "bugs": { "url": "https://github.com/jvddavid/cloudflare-images/issues" }, "homepage": "https://github.com/jvddavid/cloudflare-images", "engines": { "node": ">=18", "npm": ">=8" }, "type": "commonjs", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.cts", "files": [ "dist", "README.md", "package.json", "tsconfig.json" ], "exports": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "devDependencies": { "@eslint/js": "^9.10.0", "@stylistic/eslint-plugin": "^2.7.2", "@types/node": "^22.5.4", "eslint": "^9.10.0", "globals": "^15.9.0", "pkgroll": "^2.4.2", "tsx": "^4.19.0", "typescript": "^5.5.4", "typescript-eslint": "^8.4.0", "vitest": "^2.0.5" }, "dependencies": { "axios": "^1.7.7", "form-data": "^4.0.0" }, "scripts": { "start": "node dist/index.mjs", "type:check": "tsc --noEmit", "build": "pkgroll --clean-dist --minify --target=es2023 --target=node20", "lint": "eslint src tests", "lint:fix": "eslint --fix src tests", "dev": "tsx --watch src/index.ts", "test": "vitest run", "test:watch": "vitest" } }