font-generator/package.json

25 lines
611 B
JSON
Raw Normal View History

2024-01-31 18:38:42 +08:00
{
"name": "@bytedo/font-generator",
"type": "module",
"version": "0.3.1",
"description": "字体生成器, 可将单个或多个svg合成字体文件",
"repository": {
"type": "git",
"url": "git+https://git.wkit.fun/bytedo/font-generator.git"
},
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "esbuild src/index.js --minify --bundle --format=esm --target=esnext --outfile=dist/index.js"
},
"dependencies": {
2024-02-04 16:45:25 +08:00
"@xmldom/xmldom": "^0.8.10",
"cubic2quad": "^1.2.1",
2024-02-02 18:51:30 +08:00
"iofs": "^1.5.3",
2024-02-04 16:45:25 +08:00
"svgpath": "^2.6.0",
2024-01-31 18:38:42 +08:00
"ttf2woff2": "^5.0.0"
}
}