Files
smartjimp/package.json

70 lines
1.9 KiB
JSON
Raw Normal View History

2020-02-01 17:24:41 +00:00
{
2023-07-10 02:56:32 +02:00
"name": "@push.rocks/smartjimp",
"version": "1.1.0",
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",
2020-02-01 17:24:41 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2023-11-24 20:08:48 +01:00
"build": "(tsbuild --allowimplicitany)",
2024-02-14 01:56:00 +01: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 01:56:00 +01:00
"@git.zone/tsbuild": "^2.1.72",
2023-11-24 20:08:48 +01:00
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^2.3.2",
2024-02-14 01:56:00 +01: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 01:56:00 +01:00
"@push.rocks/levelcache": "^3.0.8",
2023-11-24 20:08:48 +01:00
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smarthash": "^3.0.4",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrequest": "^4.2.1",
"jimp": "^1.6.0",
"sharp": "^0.34.3"
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",
"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"
}