-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.25 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": "merge-images-grid",
"version": "1.0.2",
"description": "Merge images on canvas,looks likes grid template!Can be used both of node and browser.",
"author": "caixue [email protected]",
"type": "module",
"license": "MIT",
"main": "./cjs/index.cjs",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.cjs"
},
"scripts": {
"test": "node --experimental-specifier-resolution=node --loader ts-node/esm src/test.ts",
"build": "rollup -c",
"type": "tsc --noEmit"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.1",
"@types/node": "^16.7.6",
"canvas": "^2.8.0",
"eslint": "^7.32.0",
"rollup": "^2.61.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.31.1",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
},
"keywords": [
"merge",
"image",
"images",
"canvas",
"merge-images",
"grid"
],
"files": [
"esm",
"cjs",
"demo.png",
"a.png",
"b.png",
"c.png"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"url": "https://github.com/cx690/merge-images-grid"
},
"engines": {
"node": ">=13"
}
}