forked from Experience-Monks/msdf-bmfont
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
79 lines (79 loc) · 2.57 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
{
"name": "msdf-bmfont-xml",
"version": "2.7.0",
"description": "Creates a BMFont compatible bitmap font of Signed-Distance Fields from a font file",
"main": "index.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"
},
"bin": {
"msdf-bmfont": "./cli.js"
},
"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": "^3.12.0",
"commander": "^2.20.3",
"handlebars": "^4.7.7",
"is-invalid-path": "^1.0.2",
"jimp": "^0.3.11",
"js2xmlparser": "^4.0.2",
"map-limit": "0.0.1",
"maxrects-packer": "^2.7.3",
"opentype.js": "^0.11.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"load-bmfont": "^1.4.1",
"open": "^6.4.0",
"rimraf": "^2.7.1",
"run-parallel": "^1.2.0",
"serve-handler": "^6.1.5",
"standard-version": "^9.5.0",
"tslint": "^5.20.1",
"typescript": "^3.9.10",
"xml2js": "^0.4.23"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}