{
    "name": "ilingo",
    "type": "module",
    "version": "6.0.0",
    "description": "This is a lightweight library for translation.",
    "author": {
        "name": "Peter Placzek",
        "email": "contact@tada5hi.net",
        "url": "https://github.com/tada5hi"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/tada5hi/ilingo.git",
        "directory": "packages/ilingo"
    },
    "main": "./dist/index.mjs",
    "module": "./dist/index.mjs",
    "types": "./dist/index.d.ts",
    "sideEffects": false,
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs"
        }
    },
    "files": [
        "dist"
    ],
    "scripts": {
        "build:js": "tsdown",
        "build:types": "tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
        "build": "npm run build:js && npm run build:types",
        "lint": "eslint",
        "lint:fix": "npm run lint -- --fix",
        "test": "cross-env NODE_ENV=test vitest --config test/vitest.config.ts --run",
        "test:coverage": "cross-env NODE_ENV=test vitest --config test/vitest.config.ts --run --coverage",
        "bench": "cross-env NODE_ENV=production vitest bench --config bench/vitest.config.ts --run",
        "smoke": "node test/smoke.mjs"
    },
    "engines": {
        "node": ">=22.0.0"
    },
    "keywords": [
        "i18n",
        "language",
        "translate",
        "translation",
        "bilingual",
        "internationalization",
        "locale",
        "locales",
        "server-side",
        "client-side"
    ],
    "license": "MIT",
    "dependencies": {
        "pathtrace": "^2.2.0",
        "smob": "^1.5.0"
    },
    "publishConfig": {
        "access": "public"
    },
    "devDependencies": {
        "i18next": "^26.3.0"
    }
}
