-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 KB
/
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
47
48
49
{
"name": "@yartasdev/svg2ts",
"version": "2.1.1",
"description": "All svg files in a folder are batch converted into a typescript file.",
"main": "dist/util.js",
"bin": {
"svg2ts": "dist/index.js"
},
"keywords": [
"svg",
"svg2ts"
],
"scripts": {
"start": "tsc --watch",
"prebuild": "rm -rf dist",
"build": "tsc"
},
"author": "[email protected]",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^11.1.0",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"jsdom": "^23.0.1",
"lodash.camelcase": "^4.3.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.6",
"@types/lodash.camelcase": "^4.3.9"
},
"peerDependencies": {
"svgo": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yartasdev/svg2ts.git"
},
"bugs": {
"url": "https://github.com/yartasdev/svg2ts.git/issues"
},
"homepage": "https://github.com/yartasdev/svg2ts.git#readme",
"types": "./dist/util.d.ts"
}