forked from hunghg255/svg-to-font
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.27 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "csvg-to-font",
"version": "1.0.5",
"description": "Convert svg to font",
"source": "src/index.ts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"release": "changeset publish",
"lint": "tsc"
},
"keywords": [
"svg",
"font",
"convert svg to font"
],
"author": "hunghg255",
"license": "MIT",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.2",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/svg2ttf": "^5.0.1",
"@types/svgicons2svgfont": "^10.0.1",
"@types/ttf2eot": "^2.0.0",
"@types/ttf2woff": "^2.0.2",
"@types/ttf2woff2": "^2.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"size-limit": "^8.2.4",
"typescript": "^4.8.4"
},
"bin": {
"csvg-to-font": "./bin/svg-to-font.mjs"
},
"files": [
"bin",
"dist"
],
"size-limit": [
{
"path": "dist/index.module.js",
"name": "a",
"import": "{ a }",
"limit": "3 KB"
},
{
"path": "dist/index.module.js",
"name": "b",
"import": "{ b }",
"limit": "3 KB"
}
],
"homepage": "https://github.com/hunghg255/svg-to-font",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/svg-to-font"
},
"bugs": {
"url": "https://github.com/hunghg255/svg-to-font/issues"
},
"dependencies": {
"@types/cheerio": "~0.22.31",
"@types/ejs": "~3.1.0",
"@types/fs-extra": "^11.0.1",
"@types/svg2ttf": "~5.0.1",
"@types/svgicons2svgfont": "~10.0.1",
"@types/ttf2eot": "~2.0.0",
"@types/ttf2woff": "~2.0.2",
"@types/ttf2woff2": "~2.0.0",
"auto-config-loader": "^1.7.4",
"cheerio": "~1.0.0-rc.12",
"colors-cli": "~1.0.28",
"commander": "^11.0.0",
"consola": "^3.2.3",
"ejs": "~3.1.6",
"fs-extra": "~11.1.0",
"globby": "^13.2.2",
"jiti": "^1.18.2",
"svg2ttf": "~6.0.3",
"svgicons2svgfont": "~12.0.0",
"svgo": "~3.0.0",
"ttf2eot": "~3.1.0",
"ttf2woff": "~3.0.0",
"ttf2woff2": "~5.0.0",
"unbuild": "^1.2.1",
"yargs": "~17.7.1"
}
}