staticrypt/package.json

55 wiersze
1.3 KiB
JSON

2017-12-14 21:47:19 +00:00
{
2017-12-28 11:32:47 +00:00
"name": "staticrypt",
2024-04-17 16:20:53 +00:00
"version": "3.5.0",
"description": "Password protect a static HTML file without a backend - StatiCrypt uses AES-256 wiht WebCrypto to encrypt your input with your long password and put it in a HTML file with a password prompt that can decrypted in-browser (client side).",
2017-12-28 11:32:47 +00:00
"main": "index.js",
"files": [
"/cli",
"/lib"
],
2017-12-28 11:32:47 +00:00
"bin": {
"staticrypt": "./cli/index.js"
2017-12-28 11:32:47 +00:00
},
"dependencies": {
2022-11-21 21:46:45 +00:00
"dotenv": "^16.0.3",
2017-12-28 11:32:47 +00:00
"yargs": ">=10.0.3"
},
2023-04-01 10:35:29 +00:00
"engines": {
"node": ">=16.0.0"
},
2023-04-23 08:15:10 +00:00
"funding": {
"type": "github",
"url": "https://github.com/robinmoisson/staticrypt?sponsor=1"
},
2017-12-28 11:32:47 +00:00
"author": "Robin Moisson (https://github.com/robinmoisson)",
"contributors": [
"Aaron Coplan (https://github.com/AaronCoplan)",
"Adam Hull (https://github.com/hurrymaplelad)"
2017-12-28 11:32:47 +00:00
],
"license": "MIT",
"scripts": {
2022-11-22 11:38:03 +00:00
"build": "bash ./scripts/build.sh"
2017-12-28 11:32:47 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinmoisson/staticrypt.git"
},
"keywords": [
"static",
"html",
"password",
"protected",
"encrypted",
2023-04-01 10:35:29 +00:00
"encryption",
"crypto",
"webcrypto"
2017-12-28 11:32:47 +00:00
],
"bugs": {
"url": "https://github.com/robinmoisson/staticrypt/issues"
},
"homepage": "https://github.com/robinmoisson/staticrypt",
"devDependencies": {
"prettier": "^2.8.7"
}
2017-12-14 21:47:19 +00:00
}