-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@majikah/majik-file",
"type": "module",
"description": "Majik File is the core cryptographic engine for secure file handling in the Majikah ecosystem. It provides a post-quantum secure \"MJKB\" format designed for file encryption, multi-recipient key encapsulation, and transparent compression using NIST-standardized algorithms.",
"version": "0.0.20",
"license": "Apache-2.0",
"author": "Zelijah",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Majikah/majik-file.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jedlsf"
},
"keywords": [
"majikah",
"majik-file",
"file-encryption",
"secure-files",
"cryptography",
"post-quantum",
"post-quantum-cryptography",
"ml-kem",
"key-encapsulation",
"hybrid-encryption",
"multi-recipient-encryption",
"aes-gcm",
"secure-file-format",
"file-security",
"encrypted-files",
"compression",
"zstd",
"wasm-crypto",
"mjkb",
"secure-storage"
],
"homepage": "https://github.com/Majikah/majik-file#readme",
"bugs": {
"url": "https://github.com/Majikah/majik-file/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@bokuweb/zstd-wasm": "^0.0.27",
"@majikah/majik-key": "^0.2.3",
"@majikah/majik-signature": "^0.0.10",
"@noble/post-quantum": "^0.5.4",
"@scure/bip39": "^1.6.0",
"@stablelib/aes": "^2.0.1",
"@stablelib/ed25519": "^2.0.2",
"@stablelib/gcm": "^2.0.1",
"@stablelib/pbkdf2": "^2.0.1",
"@stablelib/sha256": "^2.0.1",
"@stablelib/x25519": "^2.0.1",
"ed2curve": "^0.3.0"
},
"devDependencies": {
"@types/ed2curve": "^0.2.4"
}
}