-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 945 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 945 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
{
"name": "wcipher",
"version": "0.0.5",
"description": "WCipher is a TypeScript library that leverages the native Web Crypto API for robust and secure encryption and decryption. Designed with ease of use in mind, it offers seamless integration into your applications while ensuring top-notch security.",
"type": "module",
"author": "Albert L <hkalbertl@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"encryption",
"aes",
"pbkdf2",
"aes-gcm",
"decryption",
"web-crypto",
"encryption-decryption"
],
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hkalbertl/wcipher.git"
},
"scripts": {
"test": "vitest",
"build": "tsup"
},
"dependencies": {},
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "~5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4"
}
}