{
  "name": "t-tga-codec",
  "version": "0.1.0",
  "description": "Decode tga files in web or node",
  "main": "out-dist/public/tga.js",
  "typings": "typings/api.d.ts",
  "scripts": {
    "build": "tsc -b ./tsconfig.json",
    "watch": "tsc -b -w ./tsconfig.json --preserveWatchOutput",
    "lint": "eslint -c .eslintrc.json --max-warnings 0 --ext .ts src/",
    "test": "mocha ./out-dev/test/**/*.js --timeout 20000 --diff false --enable-source-maps",
    "coverage": "nyc npm run test",
    "decode": "node ./scripts/decode-image.js",
    "encode": "node ./scripts/encode-image.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lunapaint/tga-codec.git"
  },
  "keywords": [
    "decoder",
    "graphics",
    "image",
    "tga",
    "targa"
  ],
  "author": "Daniel Imms (http://www.github.com/Tyriar)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lunapaint/tga-codec/issues"
  },
  "homepage": "https://github.com/lunapaint/tga-codec#readme",
  "devDependencies": {
    "@lunapaint/png-codec": "^0.2.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.18.39",
    "@types/pako": "^1.0.3",
    "@typescript-eslint/eslint-plugin": "^5.9.1",
    "@typescript-eslint/parser": "^5.9.1",
    "eslint": "^8.7.0",
    "esm": "^3.2.25",
    "mocha": "^9.1.3",
    "nyc": "^15.1.0",
    "typescript": "^4.5.4"
  }
}
