mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-10-03 01:39:15 +02:00

Some of the references to "paste" in code or comments got changed as well, but to clarify the intended usage of the terms: - A PrivateBin document can consist of a paste text (key "paste" in the encrypted payload) and one or several attachments and discussion entries. - Internally the root document is called a "Paste" and each discussion entry is called a "Discussion". - When referring to a whole document with one paste and optional discussion(s), we call it just "document". - When talking about a particular JSON payload type in the internal logic, i.e. during storage or transmission, we call them a paste or discussion to distinguish which type we refer to. closes #397
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "privatebin",
|
|
"version": "1.7.8",
|
|
"description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of stored data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).",
|
|
"main": "privatebin.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"devDependencies": {
|
|
"@peculiar/webcrypto": "^1.5.0",
|
|
"jsdom": "^26.0.0",
|
|
"jsdom-global": "^3.0.2",
|
|
"jsverify": "^0.8.3"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/PrivateBin/PrivateBin.git"
|
|
},
|
|
"keywords": [
|
|
"private",
|
|
"secure",
|
|
"end-to-end-encrypted",
|
|
"e2e",
|
|
"paste",
|
|
"pastebin",
|
|
"zero",
|
|
"zero-knowledge",
|
|
"encryption",
|
|
"encrypted",
|
|
"AES"
|
|
],
|
|
"author": "",
|
|
"license": "zlib-acknowledgement",
|
|
"bugs": {
|
|
"url": "https://github.com/PrivateBin/PrivateBin/issues"
|
|
},
|
|
"homepage": "https://privatebin.info/"
|
|
}
|