UNPKG

fast-png

Version:

PNG image decoder and encoder written entirely in JavaScript

60 lines (59 loc) 1.51 kB
{ "name": "fast-png", "version": "8.0.0", "license": "MIT", "description": "PNG image decoder and encoder written entirely in JavaScript", "author": "Michaël Zasso", "keywords": [ "png", "image", "image-js", "encoder", "decoder" ], "type": "module", "exports": { ".": "./lib/index.js" }, "files": [ "lib", "src" ], "scripts": { "check-types": "tsc --noEmit", "clean": "rimraf coverage lib", "eslint": "eslint .", "eslint-fix": "eslint . --fix", "prepack": "npm run tsc", "prettier": "prettier --check .", "prettier-write": "prettier --write .", "test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier", "test-only": "vitest run --coverage", "tsc": "npm run clean && npm run tsc-build", "tsc-build": "tsc --project tsconfig.build.json" }, "dependencies": { "fflate": "^0.8.2", "iobuffer": "^6.0.1" }, "devDependencies": { "@types/node": "^25.0.3", "@vitest/coverage-v8": "^4.0.16", "@zakodium/tsconfig": "^1.0.2", "eslint": "^9.39.2", "eslint-config-cheminfo-typescript": "^21.0.1", "pngjs": "^7.0.0", "prettier": "^3.7.4", "rimraf": "^6.1.2", "typescript": "^5.9.3", "vitest": "^4.0.16" }, "repository": { "type": "git", "url": "git+https://github.com/image-js/fast-png.git" }, "bugs": { "url": "https://github.com/image-js/fast-png/issues" }, "homepage": "https://image-js.github.io/fast-png/" }