{
    "name": "@thermopylae/lib.user-session",
    "description": "Stateful implementation of the user session.",
    "keywords": [
        "thermopylae",
        "library",
        "session",
        "user-session"
    ],
    "version": "1.0.1",
    "author": "Rusu Marin <dimarusu2000@gmail.com>",
    "repository": "https://github.com/marinrusu1997/thermopylae",
    "main": "dist/index.js",
    "exports": "./dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist/**/*"
    ],
    "scripts": {
        "lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\" --fix",
        "build": "gulp --gulpfile gulpfile.cjs build",
        "doc": "gulp --gulpfile gulpfile.cjs doc",
        "test": "gulp --gulpfile gulpfile.cjs test",
        "report": "gulp --gulpfile gulpfile.cjs report",
        "coverage": "gulp --gulpfile gulpfile.cjs coverage",
        "coverage:show": "gulp --gulpfile gulpfile.cjs coverageShow",
        "debug": "gulp --gulpfile gulpfile.cjs debug",
        "clean": "gulp --gulpfile gulpfile.cjs clean",
        "purge": "gulp --gulpfile gulpfile.cjs purge",
        "prepublishOnly": "npm run lint && npm run clean && npm run build",
        "unpublish": "npm unpublish --force $npm_package_name"
    },
    "dependencies": {
        "@thermopylae/core.declarations": "1",
        "@thermopylae/lib.exception": "1",
        "uid-safe": "2"
    },
    "devDependencies": {
        "@thermopylae/lib.cache": "1",
        "@thermopylae/core.logger": "1",
        "@thermopylae/dev.unit-test": "1",
        "@thermopylae/lib.user-session.commons": "1",
        "@thermopylae/dev.environment": "1",
        "@types/uid-safe": "2"
    },
    "lint-staged": {
        "*.ts": [
            "eslint"
        ]
    },
    "engines": {
        "node": ">= 16"
    },
    "license": "MIT",
    "type": "module"
}