-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1012 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
{
"name": "svg64",
"version": "2.0.0",
"description": "Convert SVG to base64 anywhere",
"keywords": [
"SVG convert",
"SVG to base64",
"base64 convert"
],
"homepage": "https://svg64.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/svg64/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"type": "module",
"source": "src/svg64.ts",
"exports": {
"require": "./dist/svg64.cjs",
"default": "./dist/svg64.modern.js"
},
"main": "./dist/svg64.cjs",
"types": "./dist/svg64.d.ts",
"module": "./dist/svg64.module.js",
"unpkg": "./dist/svg64.umd.js",
"repository": {
"type": "git",
"url": "github:scriptex/svg64"
},
"scripts": {
"copy": "cp -r dist demo",
"demo": "node ./demo/scripts/node.mjs",
"build": "microbundle && yarn copy",
"start": "microbundle watch"
},
"dependencies": {},
"devDependencies": {
"microbundle": "0.15.1"
}
}