-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 KB
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
46
47
48
49
{
"author": {
"email": "dario@casertano.name",
"name": "Dario Casertano (DarCas)"
},
"bugs": {
"url": "https://github.com/DarCas/keyplex/issues"
},
"dependencies": {
"lodash.foreach": "^4.5.0",
"lodash.keys": "^4.2.0"
},
"description": "A versatile and modular library for managing namespaced key-value storage, with built-in support for localStorage and sessionStorage, and the ability to easily extend for custom storage solutions.",
"devDependencies": {
"@types/lodash": "^4.17.13",
"terser": "^5.37.0",
"typescript": "^5.7.2"
},
"files": [
"dist"
],
"homepage": "https://github.com/DarCas/keyplex",
"keywords": [
"abstract-class",
"custom-storage",
"key-value",
"local-storage",
"namespace",
"namespaced-storage",
"session-storage",
"storage",
"typescript"
],
"license": "MIT",
"main": "dist/index.min.js",
"name": "@darcas/keyplex",
"repository": {
"type": "git",
"url": "https://github.com/DarCas/keyplex"
},
"scripts": {
"build": "rm -rf ./dist && tsc && npm run minify",
"deploy": "npm run build && npm publish --access public",
"minify": "terser dist/index.js --source-map -c -m -o dist/index.min.js && unlink dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"types": "dist/index.d.ts",
"version": "1.0.4"
}