-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@cleanor/browser-image-tools",
"version": "0.1.1",
"description": "Privacy-first image processing in the browser: convert, compress and encode PNG, JPEG, WebP, AVIF, GIF and ICO entirely on the client. Files never leave the device.",
"type": "module",
"license": "MIT",
"author": "Cleanor Research Labs (https://cleanor.app)",
"homepage": "https://cleanor.app/tools",
"repository": {
"type": "git",
"url": "git+https://github.com/cleanor-app/browser-image-tools.git"
},
"bugs": {
"url": "https://github.com/cleanor-app/browser-image-tools/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"image",
"browser",
"webp",
"avif",
"png",
"jpeg",
"gif",
"ico",
"image-compression",
"image-conversion",
"client-side",
"privacy",
"canvas",
"wasm"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.d.cts"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@jsquash/jpeg": "^1.6.0",
"@pdf-lib/upng": "^1.0.1",
"exifr": "^7.1.3",
"jszip": "3.10.1"
},
"devDependencies": {
"@cross/image": "npm:@jsr/cross__image@^0.4.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}