forked from lightning-js/msdf-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "@lightningjs/msdf-generator",
"version": "1.1.0",
"description": "Converts font files (.ttf, .otf, .woff, .woff2) to SDF format for Lightning 3's renderer, with added font metrics generation for SDF and Canvas Web fonts",
"type": "module",
"exports": {
".": "./dist/genFont.js",
"./adjustFont": "./dist/adjustFont.js"
},
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"generate": "pnpm run start",
"prepublishOnly": "pnpm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Comcast Cable Communications Management, LLC",
"license": "Apache-2.0",
"keywords": [
"msdf",
"ssdf",
"font generator",
"lightning3",
"font tools"
],
"bugs": {
"url": "https://github.com/lightning-js/msdf-generator/issues"
},
"homepage": "https://github.com/lightning-js/msdf-generator#lightning-3-sdf-font-generator",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.13",
"@types/opentype.js": "^1.3.8",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"msdf-bmfont-xml": "https://github.com/soimy/msdf-bmfont-xml.git#5a2495a14a1ebd3170d49350f450b6e3f531a941",
"opentype.js": "^1.3.4"
},
"files": [
"dist",
"src",
"font-src-sample",
"types",
"header.png"
]
}