-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 845 Bytes
/
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
{
"name": "encryption.js",
"version": "1.0.8",
"description": "Encryption Utility",
"author": {
"email": "admin@venipa.net",
"name": "Venipa",
"url": "https://github.com/Venipa"
},
"repository": "https://github.com/Venipa/encryption.js",
"keywords": ["encryption", "web", "server", "encrypt", "aes", "token", "node", "nextjs", "nuxtjs"],
"main": "./index.js",
"typings": "./index.d.ts",
"module": "./index.mjs",
"scripts": {
"build": "tsup",
"prepublish": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "22",
"microbundle": "^0.15.1",
"tsup": "^8.3.5"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"crypto-js": "^4.2.0",
"safe-stable-stringify": "^2.5.0",
"secure-json-parse": "^2.7.0"
},
"jest": {}
}