-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
44 lines (44 loc) · 903 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
{
"name": "@resvg/resvg-wasm",
"version": "2.6.0",
"description": "A high-performance SVG renderer and toolkit, powered by Rust based resvg and napi-rs",
"main": "index.js",
"module": "index.mjs",
"unpkg": "index.min.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"default": "./index.js"
},
"./index_bg.wasm": "./index_bg.wasm"
},
"files": [
"index_bg.wasm",
"index.js",
"index.mjs",
"index.min.js",
"index.d.ts"
],
"keywords": [
"resvg",
"svg",
"node-resvg",
"resvg-js",
"resvg-node",
"rust",
"svg2png",
"svg2img",
"svg to png"
],
"license": "MPL-2.0",
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": "git@github.com:yisibl/resvg-js.git",
"sideEffects": false
}