babylon-msdf-text
Version:
**babylon-msdf-text** is a library for rendering high-quality, scalable, and anti-aliased text in Babylon.js using the Multi-channel Signed Distance Field (MSDF) technique. It offers an efficient and straightforward solution for superior text rendering in
47 lines (46 loc) • 1.13 kB
JSON
{
"name": "babylon-msdf-text",
"version": "1.0.0",
"type": "module",
"keywords": [
"babylon",
"msdf",
"text-rendering",
"webgl"
],
"author": "Bhushan Wagh (https://github.com/bhushan6)",
"bugs": {
"url": "https://github.com/bhushan6/babylon-msdf-text/issues"
},
"homepage": "https://github.com/bhushan6/babylon-msdf-text#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"publish:patch": "npm version patch && npm run build && npm publish",
"publish:minor": "npm version minor && npm run build && npm publish",
"publish:major": "npm version major && npm run build && npm publish",
"preview": "vite preview"
},
"license": "MIT",
"devDependencies": {
"vite": "^4.4.5",
"vite-plugin-dts": "^4.5.3"
},
"dependencies": {
"@babylonjs/core": "^8.2.2",
"quad-indices": "^2.0.1"
},
"files": [
"dist"
],
"module": "./dist/babylon-msdf-text.es.js",
"exports": {
".": {
"import": "./dist/babylon-msdf-text.es.js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}