ccc-tnt-psd2ui/npm-packages/mac-v3.4.+/ag-psd/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2023-07-24 03:13:08 +00:00
{
"name": "ag-psd",
2023-09-06 01:51:55 +00:00
"version": "15.3.1",
2023-07-24 03:13:08 +00:00
"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": {
2023-09-06 01:51:55 +00:00
"ts": "npm run clean && tsc --watch --project tsconfig.json",
"test": "mocha --watch --timeout 20000 -R dot dist/test",
2023-07-24 03:13:08 +00:00
"lint": "tslint -c tslint.json src/ts/**/*.ts",
2023-09-06 01:51:55 +00:00
"build": "npm run clean && tsc --project tsconfig.json && tsc --project tsconfig-es6.json && browserify dist/index.js --standalone agPsd -o dist/bundle.js",
2023-07-24 03:13:08 +00:00
"rollup": "rollup --format=cjs --external base64-js --file=dist-es/bundle.js --sourcemap --sourcemapFile dist-es/bundle.js.map dist-es/index.js",
2023-09-06 01:51:55 +00:00
"clean": "node clean.js",
2023-07-24 03:13:08 +00:00
"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",
2023-09-06 01:51:55 +00:00
"@types/node": "^18.11.18",
2023-07-24 03:13:08 +00:00
"browserify": "^17.0.0",
2023-09-06 01:51:55 +00:00
"canvas": "^2.11.0",
"chai": "^4.3.7",
2023-07-24 03:13:08 +00:00
"mocha": "^6.2.0",
"tslint": "^6.1.3",
2023-09-06 01:51:55 +00:00
"typescript": "^4.9.4",
"source-map-support": "^0.5.21"
2023-07-24 03:13:08 +00:00
},
"dependencies": {
"@types/base64-js": "^1.3.0",
"@types/pako": "^2.0.0",
"base64-js": "^1.5.1",
2023-09-06 01:51:55 +00:00
"pako": "^2.1.0"
2023-07-24 03:13:08 +00:00
}
}