smartjimp/package.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2020-02-01 17:24:41 +00:00
{
2023-07-10 00:56:32 +00:00
"name": "@push.rocks/smartjimp",
2024-02-14 00:56:00 +00:00
"version": "1.0.18",
2020-02-01 17:24:41 +00:00
"private": false,
2024-04-14 15:44:47 +00:00
"description": "A TypeScript library for image processing combining both sharp and jimp libraries.",
2023-01-09 17:17:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2020-02-01 17:24:41 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-11-24 19:08:48 +00:00
"build": "(tsbuild --allowimplicitany)",
2024-02-14 00:56:00 +00:00
"buildDocs": "tsdoc",
"localPublish": "gitzone commit && pnpm run build && pnpm publish && pnpm publish --access public --registry=\"https://registry.npmjs.org\""
2020-02-01 17:24:41 +00:00
},
"devDependencies": {
2024-02-14 00:56:00 +00:00
"@git.zone/tsbuild": "^2.1.72",
2023-11-24 19:08:48 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-02-14 00:56:00 +00:00
"@git.zone/tstest": "^1.0.86",
2023-11-24 19:08:48 +00:00
"@push.rocks/tapbundle": "^5.0.8",
2024-02-14 00:56:00 +00:00
"@types/node": "^20.11.17"
2020-02-01 17:24:41 +00:00
},
2020-02-02 20:10:42 +00:00
"dependencies": {
2024-02-14 00:56:00 +00:00
"@push.rocks/levelcache": "^3.0.8",
2023-11-24 19:08:48 +00:00
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smarthash": "^3.0.4",
"@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartrequest": "^2.0.15",
2023-12-03 22:09:48 +00:00
"jimp": "^0.22.10",
2024-02-14 00:56:00 +00:00
"sharp": "^0.33.2"
2020-02-02 20:10:42 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2023-01-09 17:17:33 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-02 20:10:42 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-01-09 17:17:33 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2023-11-24 19:21:12 +00:00
],
"repository": {
"type": "git",
2024-05-29 12:13:46 +00:00
"url": "https://code.foss.global/push.rocks/smartjimp.git"
2023-11-24 19:21:12 +00:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartjimp/issues"
},
2024-05-29 12:13:46 +00:00
"homepage": "https://code.foss.global/push.rocks/smartjimp",
2024-04-14 15:44:47 +00:00
"keywords": [
"image processing",
"TypeScript",
"sharp",
"jimp",
"resize image",
"convert image format",
"image caching",
"buffer manipulation",
"AVIF",
"WEBP",
"PNG"
]
}