Files
FixIt/packages/encrypt/package.json
T
Cell bfee4041d6 refactor(encrypt): rename post-encrypt to encrypt
- Rename package from @hugo-fixit/post-encrypt to @hugo-fixit/encrypt
- Rename bin from post-encrypt to fixit-encrypt
- Update all i18n translations (16 files) to use npx @hugo-fixit/encrypt
- Update CI workflow, publish script, code comments, and docs
- Rewrite README with performance benchmarks and other implementations
2026-07-19 13:15:57 +08:00

41 lines
908 B
JSON

{
"name": "@hugo-fixit/encrypt",
"type": "module",
"version": "0.2.0",
"description": "Post-build AES-256-GCM encryption tool for the FixIt Hugo theme",
"author": "Lruihao",
"license": "MIT",
"homepage": "https://github.com/hugo-fixit/FixIt/tree/main/packages/encrypt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/FixIt.git",
"directory": "packages/encrypt"
},
"bugs": {
"url": "https://github.com/hugo-fixit/FixIt/issues"
},
"keywords": [
"hugo",
"fixit",
"encryption",
"aes-256-gcm",
"post-build"
],
"main": "./dist/index.js",
"bin": {
"fixit-encrypt": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"test": "tsx src/test/bench.ts",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"consola": "^3.4.2"
}
}