forked from sharonchoong/svg-exportJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.17 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.17 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
{
"name": "svg-export-forkmulti",
"type": "module",
"version": "1.0.1",
"description": "Javascript SVG parser and renderer on Canvas with export capabilities. Forked and ready for multiple exports.",
"source": "src/svg-export.js",
"module": "dist/svg-export.module.js",
"unpkg": "dist/svg-export.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"keywords": [
"svg",
"export",
"canvas",
"pdf",
"png",
"jpeg"
],
"author": "Sharon Choong",
"contributors": [
{
"name": "Sergio Galán",
"url": "https://graphicmethod.studio"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thegraphicmethod/svg-exportJS-forkmulti"
},
"devDependencies": {
"microbundle": "^0.15.1"
},
"peerDependencies": {
"canvg": "^4.0.1",
"pdfkit": "^0.13.0",
"svg-text-to-path": "^2.0.2",
"svg-to-pdfkit": "^0.1.8"
},
"peerDependenciesMeta": {
"canvg": {
"optional": true
},
"pdfkit": {
"optional": true
},
"svg-to-pdfkit": {
"optional": true
},
"svg-text-to-path": {
"optional": true
}
}
}