jeanfortheweb/translata

View on GitHub
packages/__template__/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@translata/template",
  "version": "0.0.0",
  "description": "<> functionality for translata: The Composable Translation Utility",
  "license": "MIT",
  "repository": "github:jeanfortheweb/translata",
  "keywords": [
    "translation",
    "i18n",
    "typescript",
    "functional"
  ],
  "engines": {
    "node": ">= 10.15.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "compile:cjs": "rm -rf lib/cjs && tsc --p tsconfig.cjs.json",
    "compile:esm": "rm -rf lib/esm && tsc --p tsconfig.esm.json"
  }
}