@vollcrypt/files-wasm 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vollcrypt/files-wasm",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Cross-platform, quantum-resistant file encryption engine for the browser/Node via WebAssembly",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "pkg/vollcrypt_files_wasm.js",
|
|
7
|
+
"types": "pkg/vollcrypt_files_wasm.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "wasm-pack build --target web --out-dir pkg",
|
|
10
|
+
"build:node": "wasm-pack build --target nodejs --out-dir pkg-node",
|
|
11
|
+
"test": "wasm-pack test --node"
|
|
12
|
+
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/BeratVural/vollcrypt.git",
|
|
19
|
+
"directory": "vollcrypt-files/wasm"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/BeratVural/vollcrypt#readme",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/BeratVural/vollcrypt/issues"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"pkg/"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"vollcrypt",
|
|
30
|
+
"cryptography",
|
|
31
|
+
"encryption",
|
|
32
|
+
"file-encryption",
|
|
33
|
+
"wasm",
|
|
34
|
+
"webassembly",
|
|
35
|
+
"aes-gcm",
|
|
36
|
+
"ed25519",
|
|
37
|
+
"x25519",
|
|
38
|
+
"ml-kem",
|
|
39
|
+
"post-quantum",
|
|
40
|
+
"pqc",
|
|
41
|
+
"e2ee"
|
|
42
|
+
],
|
|
43
|
+
"author": "Berat Vural <berat.vural.tr@gmail.com>",
|
|
44
|
+
"license": "GPL-3.0-only OR LicenseRef-Commercial"
|
|
45
|
+
}
|