-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "k9crypt",
"version": "1.2.2",
"description": "A special encryption algorithm created for K9Crypt.",
"main": "index.js",
"files": [
"dist/",
"index.js"
],
"scripts": {
"build": "rm -rf dist && cp -r src dist && echo \"module.exports = require('./dist/index');\" > index.js",
"prepublishOnly": "npm run build",
"test": "node test/perf-test.js",
"chat": "node test/chat-simulation.js"
},
"keywords": [
"encryption",
"aead",
"aes-256-gcm",
"chacha20-poly1305",
"hkdf",
"crypto",
"k9crypt",
"secure",
"decrypt"
],
"author": "K9Crypt Team",
"license": "MIT",
"dependencies": {
"argon2": "^0.45.1",
"lzma-native": "^8.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/K9Crypt/module.git"
},
"bugs": {
"url": "https://github.com/K9Crypt/module/issues"
},
"homepage": "https://k9crypt.xyz"
}