-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 954 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
{
"name": "svg-extract-paths-cli",
"version": "0.0.1",
"description": "Filter svg paths and save them to new svg files",
"keywords": ["svg", "paths", "extract", "filter", "by-id", "svgson", "svgdom", "svg.js"],
"author": "Rainer Studhalter <rainer@studhalter.dev> (https://studhalter.dev)",
"repository": {
"type": "git",
"url": "https://github.com/rainerstudhalter/svg-extract-paths-cli.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rainerstudhalter/svg-extract-paths-cli/issues"
},
"homepage": "https://github.com/rainerstudhalter/svg-extract-paths-cli#readme",
"type": "module",
"bin": {
"svg-extract-paths": "cli.js"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.2.0",
"commander": "^11.1.0",
"is-svg": "^5.0.0",
"svg-path-properties": "^1.3.0",
"svgdom": "^0.1.19",
"svgson": "^5.3.1"
}
}