{
  "name": "ag-psd",
  "version": "30.1.1",
  "description": "Library for reading and writing PSD files",
  "main": "dist/index.js",
  "module": "dist-es/index.js",
  "es2015": "dist-es/index.js",
  "browser": "dist/index.js",
  "sideEffects": true,
  "repository": {
    "type": "git",
    "url": "https://github.com/Agamnentzar/ag-psd"
  },
  "scripts": {
    "ts": "npm run clean && tsc --watch --project tsconfig.json",
    "test": "mocha --watch --timeout 50000 --reporter-option maxDiffSize=99999999 -R dot dist/test",
    "lint": "tslint -c tslint.json src/ts/**/*.ts",
    "build": "npm run clean && tsc --project tsconfig.json && tsc --project tsconfig-es6.json && browserify dist/index.js --standalone agPsd -o dist/bundle.js",
    "rollup": "rollup --format=cjs --external base64-js --file=dist-es/bundle.js --sourcemap --sourcemapFile dist-es/bundle.js.map dist-es/index.js",
    "clean": "node clean.js",
    "prepublishOnly": "npm run build"
  },
  "jspm": {
    "main": "dist/index.js",
    "jspmNodeConversion": false,
    "dependencies": {
      "base64-js": "^1.3.1"
    }
  },
  "keywords": [
    "psd",
    "photoshop"
  ],
  "author": "Agamnentzar",
  "license": "MIT",
  "devDependencies": {
    "@types/mocha": "^10.0.10",
    "@types/node": "^22.18.3",
    "@types/pako": "^2.0.3",
    "browserify": "^17.0.1",
    "canvas": "^3.1.0",
    "chai": "^4.3.7",
    "mocha": "^10.4.0",
    "source-map-support": "^0.5.21",
    "tslint": "^6.1.3",
    "typescript": "^4.9.4"
  },
  "dependencies": {
    "base64-js": "1.5.1",
    "pako": "2.1.0"
  }
}
