@nanawan/webfont 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # pui-webfont
2
+
3
+ Generator of fonts from SVG icons. forked by [itgalaxy/webfont](https://github.com/itgalaxy/webfont).
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@nanawan/webfont",
3
+ "version": "0.0.9",
4
+ "description": "Generator of fonts from svg icons, svg icons to svg font, svg font to ttf, ttf to eot, ttf to woff, ttf to woff2",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "scripts": {
10
+ "dev": "tsup --watch",
11
+ "build": "tsup",
12
+ "clean": "rimraf dist && rimraf node_modules",
13
+ "release": "pnpm build && vr release"
14
+ },
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js",
22
+ "require": "./dist/index.cjs"
23
+ }
24
+ },
25
+ "dependencies": {
26
+ "@nanawan/shared": "^3.2.10",
27
+ "fs-extra": "^11.2.0",
28
+ "globby": "^11.0.0",
29
+ "p-limit": "^3.1.0",
30
+ "svg2ttf": "^6.0.2",
31
+ "svgicons2svgfont": "^10.0.3",
32
+ "xml2js": "^0.4.23"
33
+ },
34
+ "devDependencies": {
35
+ "@types/fs-extra": "11.0.4",
36
+ "@types/node": "15.14.9",
37
+ "@nanawan/release": "^0.2.10",
38
+ "rimraf": "5.0.7",
39
+ "tsup": "^8.0.1",
40
+ "typescript": "^5.2.2"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/pui/webfont.git"
45
+ },
46
+ "author": "haoziqaq <357229046@qq.com>",
47
+ "license": "MIT"
48
+ }