-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 998 Bytes
/
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
{
"name": "image-joiner",
"version": "1.1.0",
"description": "Easy and Fast Grid Image Joiner",
"author": "Bjorn<https://github.com/lxxorz>",
"packageManager": "[email protected]",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"homepage": "https://github.com/lxxorz/image-joiner/blob/main/README.md",
"repository": {
"url": "https://github.com/lxxorz/image-joiner",
"type": "git"
},
"keywords": [
"image",
"merge",
"join",
"sharp",
"grid",
"node"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/jest-image-snapshot": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"jest-image-snapshot": "^6.2.0",
"sharp": "^0.32.5",
"ts-jest": "^29.1.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"peerDependencies": {
"sharp": "^0.32.5"
},
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json"
}
}