Files
smartjimp/package.json
T

73 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2020-02-01 17:24:41 +00:00
{
2023-07-10 02:56:32 +02:00
"name": "@push.rocks/smartjimp",
2026-05-01 16:15:48 +00:00
"version": "1.2.1",
2020-02-01 17:24:41 +00:00
"private": false,
2024-04-14 17:44:47 +02:00
"description": "A TypeScript library for image processing combining both sharp and jimp libraries.",
2023-01-09 18:17:33 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2020-02-01 17:24:41 +00:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"format": "gitzone format",
"build": "tsbuild",
"buildDocs": "tsdoc"
2020-02-01 17:24:41 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0",
"@types/pngjs": "^6.0.5"
2020-02-01 17:24:41 +00:00
},
2020-02-02 20:10:42 +00:00
"dependencies": {
"@push.rocks/levelcache": "^3.2.2",
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smarthash": "^3.2.7",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrequest": "^5.0.1",
"jimp": "^1.6.1",
"sharp": "^0.34.5"
2020-02-02 20:10:42 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2023-01-09 18:17:33 +01:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-02 20:10:42 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2020-02-02 20:10:42 +00:00
"npmextra.json",
"readme.md"
2023-01-09 18:17:33 +01:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2023-11-24 20:21:12 +01:00
],
"repository": {
"type": "git",
2024-05-29 14:13:46 +02:00
"url": "https://code.foss.global/push.rocks/smartjimp.git"
2023-11-24 20:21:12 +01:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartjimp/issues"
},
2024-05-29 14:13:46 +02:00
"homepage": "https://code.foss.global/push.rocks/smartjimp",
2024-04-14 17:44:47 +02:00
"keywords": [
"image processing",
"TypeScript",
"sharp",
"jimp",
"resize image",
"convert image format",
"image caching",
"buffer manipulation",
"AVIF",
"WEBP",
"PNG"
],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}