{
    "name": "pagecrypt",
    "version": "7.1.0",
    "description": "Easily add client-side password-protection to your Single Page Applications, static websites and HTML files.",
    "type": "module",
    "scripts": {
        "test": "cd ./test && pnpm test && cd ..",
        "test:build": "pnpm build && pnpm pack && cd ./test && pnpm i ../pagecrypt-*.tgz && pnpm test && cd ..",
        "test:verify": "cd test && pnpm test:verify && cd ..",
        "build": "pnpm build:web && pnpm build:lib",
        "format": "prettier --write .",
        "build:lib": "tsdown",
        "dev:web": "vite",
        "build:web": "vite build && node scripts/postbuild.js",
        "preview:web": "vite preview"
    },
    "author": "Samuel Plumppu",
    "license": "LGPL-3.0-or-later",
    "devDependencies": {
        "@arethetypeswrong/cli": "^0.18.2",
        "@types/node": "^25.3.3",
        "html-minifier-terser": "^7.2.0",
        "prettier": "^3.8.1",
        "publint": "^0.3.18",
        "tsdown": "^0.20.3",
        "typescript": "^5.9.3",
        "vite": "^7.3.1",
        "vite-plugin-singlefile": "^2.3.0"
    },
    "engines": {
        "node": ">= 16.0.0"
    },
    "engineStrict": true,
    "bin": {
        "pagecrypt": "dist/cli.mjs"
    },
    "main": "./dist/index.mjs",
    "types": "./dist/index.d.mts",
    "exports": {
        ".": {
            "types": "./dist/index.d.mts",
            "node": "./dist/index.mjs"
        },
        "./core": {
            "types": "./dist/core.d.mts",
            "import": "./dist/core.mjs"
        }
    },
    "keywords": [
        "web-crypto",
        "encryption",
        "password",
        "clientside",
        "password-protection",
        "cryptography",
        "pbkdf2",
        "aes",
        "cli",
        "commandline",
        "html",
        "crypto",
        "encrypted webpage"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Greenheart/pagecrypt.git"
    },
    "files": [
        "dist"
    ],
    "bugs": {
        "url": "https://github.com/Greenheart/pagecrypt/issues"
    },
    "homepage": "https://github.com/Greenheart/pagecrypt#readme",
    "prettier": {
        "semi": false,
        "singleQuote": true,
        "tabWidth": 4
    }
}
