mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
bfee4041d6
- 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
41 lines
908 B
JSON
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"
|
|
}
|
|
}
|