{ "name": "ag-psd", "version": "15.3.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 20000 -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": "^9.1.1", "@types/node": "^18.11.18", "browserify": "^17.0.0", "canvas": "^2.11.0", "chai": "^4.3.7", "mocha": "^6.2.0", "tslint": "^6.1.3", "typescript": "^4.9.4", "source-map-support": "^0.5.21" }, "dependencies": { "@types/base64-js": "^1.3.0", "@types/pako": "^2.0.0", "base64-js": "^1.5.1", "pako": "^2.1.0" } }