-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 KB
/
package.json
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
{
"name": "next-cryptr",
"version": "1.1.3",
"description": "Cryptographic utility for encrypting and decrypting data using AES-GCM 256 algorithm. Fully optimized for Next.js. Based on built-in API crypto.subtle.* methods.",
"author": "Clément Warneys",
"license": "ISC",
"type": "module",
"sideEffects": false,
"main": "src/index.js",
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest ./test/",
"perf": "node ./performance/test.js",
"lint": "eslint ."
},
"dependencies": {
"next-base64-encoder": "^1.3.0",
"next-buffer": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"cryptr": "^6.3.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"jest": "^29.7.0"
},
"keywords": [
"cryptography",
"crypto",
"AES-GCM",
"AES-GCM-256",
"symmetric",
"encryption",
"decryption",
"encrypt",
"decrypt",
"iv-generator",
"cipher",
"authorization",
"security",
"nextjs",
"edge",
"edge-runtime",
"browser"
]
}