-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 979 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
{
"name": "export-svg",
"license": "MIT",
"author": "Matteo Gallesio, Eric Shull",
"version": "0.2.0",
"description": "Convert a browser SVG to PNG or dataUri",
"keywords": [
"svg",
"png",
"graphics",
"images",
"export"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.0",
"requirejs": "^2.3.6",
"rollup": "^3.20.2",
"tape": "^5.6.3",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
},
"scripts": {
"build": "rollup -c ./build/rollup.config.js",
"clean": "rm -fr dist",
"test": "node test/test.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/m-gallesio/export-svg"
},
"bugs": {
"url": "https://github.com/m-gallesio/export-svg/issues"
},
"homepage": "https://github.com/m-gallesio/export-svg#readme"
}