mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
40 lines
898 B
JSON
40 lines
898 B
JSON
{
|
|
"name": "@hugo-fixit/post-encrypt",
|
|
"type": "module",
|
|
"version": "0.0.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/feat/post-encrypt/packages/post-encrypt#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hugo-fixit/FixIt.git",
|
|
"directory": "packages/post-encrypt"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hugo-fixit/FixIt/issues"
|
|
},
|
|
"keywords": [
|
|
"hugo",
|
|
"fixit",
|
|
"encryption",
|
|
"aes-256-gcm",
|
|
"post-build"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"post-encrypt": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "tsx src/index.ts",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"consola": "^3.4.2"
|
|
}
|
|
}
|