UNPKG

@ozdemirburak/morse-code-translator

Version:

Morse code translator helps you convert text to Morse code and vice versa, with the option to play Morse code audio.

61 lines (60 loc) 1.53 kB
{ "name": "@ozdemirburak/morse-code-translator", "version": "6.0.0", "description": "Morse code translator helps you convert text to Morse code and vice versa, with the option to play Morse code audio.", "keywords": [ "morse", "morse alphabet", "morse code", "morse decoder", "morse encoder", "morse translator", "morse code translator", "morse code decoder", "web audio" ], "license": "MIT", "homepage": "https://morsecodetranslator.com", "author": "Burak Özdemir", "repository": { "type": "git", "url": "https://github.com/ozdemirburak/morse-code-translator.git" }, "devDependencies": { "@vitest/ui": "^4.0.9", "happy-dom": "^20.0.10", "tslib": "^2.8.1", "typescript": "^5.9.3", "vite": "^7.2.2", "vite-plugin-dts": "^4.5.4", "vitest": "^4.0.9" }, "type": "module", "types": "./dist/index.d.ts", "main": "./dist/morse-code-translator.umd.js", "module": "./dist/morse-code-translator.es.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/morse-code-translator.es.js", "require": "./dist/morse-code-translator.umd.js" } }, "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "dev": "vite", "build": "tsc --noEmit && vite build", "preview": "vite preview", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage" }, "engines": { "node": ">=18.0.0" } }