braillify
Version:
Braillify is a library for converting text to braille.
47 lines • 1.12 kB
JSON
{
"name": "braillify",
"description": "Braillify is a library for converting text to braille.",
"repository": "https://github.com/dev-five-git/braillify",
"author": "devfive",
"license": "Apache-2.0",
"homepage": "https://braillify.com",
"bugs": {
"url": "https://github.com/dev-five-git/braillify/issues",
"email": "contact@devfive.kr"
},
"keywords": [
"braillify",
"braille",
"braille-converter",
"braille-to-text",
"text-to-braille",
"wasm"
],
"version": "1.0.2",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./pkg/index.js",
"module": "./pkg/index.js",
"files": [
"pkg/index.d.ts",
"pkg/index.js",
"pkg/index_bg.wasm",
"pkg/index_bg.wasm.d.ts",
"pkg/index_bg.js"
],
"type": "module",
"exports": {
".": {
"import": "./pkg/index.js",
"require": "./pkg/index.js",
"types": "./pkg/index.d.ts"
}
},
"types": "./pkg/index.d.ts",
"scripts": {
"build": "wasm-pack build --target bundler --out-dir ./pkg --out-name index",
"test": "wasm-pack test --node"
}
}