-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "imagerot",
"version": "1.0.1",
"description": "A lightweight, cross-environment image library for applying unique effects via raw image buffers.",
"scripts": {
"build:ts": "cross-env ENVIRONMENT=node npx tsc",
"build:webpack": "webpack --mode production",
"build": "npm run build:ts && npm run build:webpack",
"test": "jest",
"prepack": "npm run build"
},
"keywords": [
"image",
"image-editing",
"image-processing",
"buffer",
"image-buffer",
"browser",
"client-side",
"canvas",
"typescript",
"image-manipulation",
"pixel-manipulation",
"rgba",
"web",
"web-development",
"web-image-processing",
"image-editor"
],
"author": "emy",
"license": "GPL 3.0",
"main": "./lib/imagerot/node/index.js",
"types": "./lib/imagerot/node/index.d.ts",
"exports": {
".": "./lib/imagerot/node/index.js",
"./browser": "./lib/imagerot/browser/index.js"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.5.3",
"cross-env": "^7.0.3",
"jest": "^29.6.1",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"canvas": "^2.11.2",
"image-size": "^1.0.2",
"isomorphic-fetch": "^3.0.0"
}
}