-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "encrypt-storejs",
"version": "3.0.1",
"description": "lightweight, easy-to-use JavaScript library for securely storing data in the browser's local storage. By employing advanced encryption techniques, encrypt-storejs ensures that sensitive information is safely stored and protected against unauthorized access",
"main": "dist/encrypt-store.js",
"types": "dist/encrypt-store.d.ts",
"browser": "dist/encrypt-store.js",
"unpkg": "dist/encrypt-store.min.js",
"jsdelivr": "dist/encrypt-store.min.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"encrypt-storejs",
"store",
"local",
"storage",
"storejs",
"secure",
"localStorage",
"encryption"
],
"homepage": "https://github.com/abfahimb/encrypt-storeJS#readme",
"repository": {
"type": "git",
"url": "https://github.com/abfahimb/encrypt-storeJS.git"
},
"author": "Abdullah Al Fahim",
"license": "MIT",
"scripts": {
"build": "tsc && terser dist/encrypt-store.js -o dist/encrypt-store.min.js --compress --mangle --comments '/^!/'",
"prepare": "npm run build"
},
"devDependencies": {
"terser": "^5.0.0",
"typescript": "^4.9.5"
}
}