16 lines
518 B
JSON
16 lines
518 B
JSON
{
|
|
"name": "conv-font",
|
|
"version": "0.0.1",
|
|
"description": "Convert font data to XML intermediate.",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "npm run-script conv0 && npm run-script conv1",
|
|
"conv0": "node conv-font.js ../main-gdxapp/assets/font/code2000.ttf > bin/code2000.xml",
|
|
"conv1": "node conv-font.js ../main-gdxapp/assets/font/free-sans.ttf > bin/free-sans.xml",
|
|
"debug": "node conv-font.js ../main-gdxapp/assets/font/free-sans.ttf"
|
|
},
|
|
"dependencies": {
|
|
"opentype.js": "1.3.4"
|
|
}
|
|
}
|