62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "lv_font_conv",
|
|
"version": "1.5.2",
|
|
"description": "Rasterize vector fonts for embedded use. Supports subsettings & merge.",
|
|
"keywords": [
|
|
"font",
|
|
"convertor",
|
|
"embedded"
|
|
],
|
|
"repository": "lvgl/lv_font_conv",
|
|
"license": "MIT",
|
|
"files": [
|
|
"lv_font_conv.js",
|
|
"lib/"
|
|
],
|
|
"bin": {
|
|
"lv_font_conv": "lv_font_conv.js"
|
|
},
|
|
"scripts": {
|
|
"start": "parcel ./web/index.html --open",
|
|
"build": "parcel build ./web/index.html ./web/content.html --public-url ./",
|
|
"build:dockerimage": "docker build -t lv_font_conv_freetype ./support",
|
|
"build:freetype": "docker run --rm -v $(pwd):/src/lv_font_conv -it lv_font_conv_freetype ./lv_font_conv/support/build.sh",
|
|
"lint": "eslint .",
|
|
"test": "npm run lint && nyc mocha --recursive",
|
|
"coverage": "npm run test && nyc report --reporter html",
|
|
"shrink-deps": "shx rm -rf node_modules/opentype.js/src node_modules/opentype.js/dist/opentype.{m,js.m}* node_modules/pngjs/browser.js",
|
|
"prepublishOnly": "npm run shrink-deps"
|
|
},
|
|
"dependencies": {
|
|
"argparse": "^2.0.0",
|
|
"bit-buffer": "^0.2.5",
|
|
"debug": "^4.1.1",
|
|
"make-error": "^1.3.5",
|
|
"mkdirp": "^1.0.4",
|
|
"opentype.js": "^1.1.0",
|
|
"pngjs": "^6.0.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"argparse",
|
|
"bit-buffer",
|
|
"debug",
|
|
"make-error",
|
|
"mkdirp",
|
|
"opentype.js",
|
|
"pngjs"
|
|
],
|
|
"devDependencies": {
|
|
"eslint": "^7.21.0",
|
|
"file-saver": "^2.0.2",
|
|
"mocha": "^8.3.0",
|
|
"nyc": "^15.1.0",
|
|
"parcel-bundler": "^1.12.4",
|
|
"posthtml-include": "^1.6.2",
|
|
"roboto-fontface": "^0.10.0",
|
|
"shx": "^0.3.2"
|
|
},
|
|
"browserslist": [
|
|
"last 1 Chrome version"
|
|
]
|
|
}
|