-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
128 lines (128 loc) · 3.03 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "image-in-browser",
"version": "3.2.1",
"description": "Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)",
"author": "Yegor Pelykh <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yegor-pelykh/image-in-browser"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*d.ts"
],
"keywords": [
"convert",
"converter",
"browser",
"encode",
"decode",
"image",
"animation",
"bmp",
"gif",
"ico",
"jpg",
"jpeg",
"png",
"pnm",
"pbm",
"pgm",
"ppm",
"psd",
"pvr",
"tga",
"tif",
"tiff",
"webp",
"color",
"pixel",
"contrast",
"saturation",
"brightness",
"gamma",
"exposure",
"hue",
"adjust-color",
"billboard",
"bleach-bypass",
"bulge-distortion",
"bump",
"chromatic-aberration",
"color-halftone",
"color-offset",
"convolution",
"dither",
"drop-shadow",
"edge-glow",
"emboss",
"gaussian-blur",
"grayscale",
"hexagon-pixelate",
"invert",
"luminance-threshold",
"monochrome",
"noise",
"normalize",
"pixelate",
"quantize",
"reinhard-tone-map",
"sepia",
"sketch",
"smooth",
"sobel",
"solarize",
"stretch-ditortion",
"vignette",
"circle",
"line",
"polygon",
"rect",
"fill",
"composite",
"crop",
"crop-circle",
"flip",
"rectify",
"resize",
"rotate",
"flip",
"flip-horizontal",
"flip-vertical",
"trim"
],
"scripts": {
"test:color": "vitest run test/color",
"test:draw": "vitest run test/draw",
"test:exif": "vitest run test/exif",
"test:filter": "vitest run test/filter",
"test:format": "vitest run test/format",
"test:image": "vitest run test/image",
"test:transform": "vitest run test/transform",
"test:all": "vitest run test",
"format:src": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" --no-error-on-unmatched-pattern",
"format:test": "prettier --write \"test/**/*.ts\" \"test/**/*.js\" --no-error-on-unmatched-pattern",
"format:eslint": "eslint --fix",
"format": "npm run format:src && npm run format:test && npm run format:eslint",
"build:src-js": "tsc -p tsconfig.build.json --removeComments",
"build:src-typings": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"build:src": "npm run build:src-js && npm run build:src-typings",
"build:pre": "node pre-build.js",
"build": "npm run build:pre && npm run format && npm run build:src",
"release": "release-it"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}