forked from soimy/msdf-bmfont-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
{
"name": "msdf-bmfont-xml",
"version": "2.5.4",
"description": "Creates a BMFont compatible bitmap font of Signed-Distance Fields from a font file",
"type": "module",
"main": "dist/index.js",
"bin": {
"msdf-bmfont": "dist/cli.js"
},
"scripts": {
"debug": "cd test/assets/fonts && node --inspect-brk=9229 ../../../cli.js -f json -o font -u -m 512,256 -t msdf -s 42 -r 5 -p 2 --smart-size --pot ../../../assets/fonts/DIN_CB.ttf",
"test": "npm run test:disk && npm run test:memory",
"test:disk": "cd test/assets/fonts && node ../../../cli.js -f xml -o DIN_CB -v -u -m 512,256 -t msdf -s 42 -r 4 -p 2 --smart-size --pot ../../../assets/fonts/DIN_CB.ttf",
"test:memory": "node test/test_memory.js",
"test:rtl": "cd test/assets/fonts && node ../../../cli.js -f xml -o Iransans -i ../../../assets/charset/charset.persian.txt -v -u -m 512,256 -t msdf -s 42 -r 4 -p 2 --smart-size --pot ../../../assets/fonts/Iransans.ttf",
"test:save": "cd test/assets/fonts && node ../../../cli.js -o DIN_CB -u -m 512,256 --smart-size --pot ../../../assets/fonts/DIN_CB.ttf",
"test:reuse": "cd test/assets/fonts && node --inspect-brk=9229 ../../../cli.js -u DIN_CB.cfg ../../../assets/fonts/FiraSansMedium.woff",
"render": "npm run test:disk && node test/test.js",
"version": "standard-version"
},
"author": {
"name": "YM Shen",
"email": "[email protected]",
"url": "https://github.com/soimy"
},
"keywords": [
"bmfont",
"bitmap",
"font",
"text",
"fonts",
"signed",
"distance",
"field",
"glyph",
"glyphs",
"sdf",
"msdf",
"multichannel"
],
"repository": {
"type": "git",
"url": "git://github.com/soimy/msdf-bmfont-xml.git"
},
"homepage": "https://github.com/soimy/msdf-bmfont-xml",
"bugs": {
"url": "https://github.com/soimy/msdf-bmfont-xml/issues"
},
"license": "MIT",
"dependencies": {
"arabic-persian-reshaper": "^1.0.1",
"cli-progress": "^2.1.1",
"commander": "^2.19.0",
"handlebars": "^4.7.2",
"is-invalid-path": "^1.0.2",
"jimp": "^0.16.1",
"js2xmlparser": "^4.0.0",
"map-limit": "0.0.1",
"maxrects-packer": "^2.4.0-alpha.0",
"opentype.js": "^0.11.0",
"update-notifier": "^4.0.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"load-bmfont": "^1.4.0",
"open": "^6.3.0",
"rimraf": "^2.6.3",
"run-parallel": "^1.1.9",
"serve-handler": "^6.0.2",
"standard-version": "^6.0.1",
"three": "^0.102.1",
"three-bmfont-text": "^2.3.0",
"tslint": "^5.14.0",
"typescript": "^4.5.2",
"xml2js": "^0.4.19"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}