-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
50
51
52
{
"author": {
"email": "dario@casertano.name",
"name": "Dario Casertano (DarCas)"
},
"bugs": {
"url": "https://github.com/DarCas/memoryx/issues"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.keys": "^4.2.0",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2"
},
"description": "A lightweight in-memory storage library with namespace support for easy data management and isolation in browser environments.",
"devDependencies": {
"@types/lodash": "^4.17.13",
"terser": "^5.37.0",
"typescript": "^5.7.2"
},
"files": [
"dist"
],
"homepage": "https://github.com/DarCas/memoryx",
"keywords": [
"browser",
"data-management",
"in-memory",
"key-value-store",
"memory",
"namespace",
"persistent-storage",
"storage",
"typescript"
],
"license": "MIT",
"main": "dist/index.min.js",
"name": "@darcas/memoryx",
"repository": {
"type": "git",
"url": "https://github.com/DarCas/memoryx"
},
"scripts": {
"build": "rm -rf ./dist && tsc && npm run minify",
"deploy": "npm run build && npm publish",
"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": "2.0.3"
}