tiff
Version:
TIFF image decoder written entirely in JavaScript
52 lines (51 loc) • 1.37 kB
JSON
{
"name": "tiff",
"version": "7.1.3",
"license": "MIT",
"description": "TIFF image decoder written entirely in JavaScript",
"author": "Michaël Zasso",
"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.0"
},
"devDependencies": {
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.33.0",
"eslint-config-cheminfo-typescript": "^19.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/image-js/tiff.git"
},
"bugs": {
"url": "https://github.com/image-js/tiff/issues"
},
"homepage": "https://image-js.github.io/tiff/"
}