-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 882 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
45
46
{
"name": "svg-to-url",
"version": "4.0.0",
"description": "A simple tool to convert svg file to data url",
"repository": "zillding/svg-to-url",
"type": "module",
"bin": {
"svg-to-url": "./cli.js"
},
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prettier": "prettier --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"release": "np"
},
"files": [
"index.js",
"index.d.ts",
"cli.js",
"string-to-url.js"
],
"keywords": [
"svg",
"data",
"url"
],
"author": "Zill Ding",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"commander": "^12.0.0",
"svgo": "^3.3.2"
},
"devDependencies": {
"jest": "^29.7.0",
"np": "^10.0.5",
"prettier": "^3.2.5"
}
}