Files
FixIt/packages/encrypt/package.json
T
2026-07-19 13:25:28 +08:00

41 lines
908 B
JSON

{
"name": "@hugo-fixit/encrypt",
"type": "module",
"version": "0.3.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"
}
}