forked from aautar/svg-foreignobject-screenshot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@artemis69/svg-foreignobject-screenshot",
"description": "Use SVG foreignObject to render images of HTML content",
"author": "Artem Schukin",
"license": "MIT",
"version": "0.7.0",
"type": "module",
"homepage": "https://github.com/Artemis69/svg-foreignobject-screenshot",
"repository": {
"type": "git",
"url": "https://github.com/Artemis69/svg-foreignobject-screenshot"
},
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"editorconfig-checker": "^4.0.2",
"prettier": "^2.4.1",
"tsm": "^2.2.1",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"uvu": "^0.5.3"
},
"scripts": {
"format": "prettier --write .",
"build": "tsup",
"test": "tsm --no-warnings tests/main.ts && editorconfig-checker --exclude '.git|node_modules'"
},
"keywords": [
"svg",
"foreignObject",
"html",
"dom",
"canvas",
"png"
]
}