-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
{
"name": "@diaskappassov/hungry-local-storage",
"version": "1.0.1",
"description": "💾⌛ Tool for store temporary data in local storage (with autodelete expired data).",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"type": "module",
"files": [
"lib"
],
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"test": " find -name \"*test.ts\" | xargs node --loader tsx --test",
"prepublishOnly": "npm run test && npm run build",
"demo": "npm run prepublishOnly && live-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dias1c/hungry-local-storage.git"
},
"keywords": [
"localStorage",
"local storage",
"temporaryLocalStorage",
"temporary local storage",
"local storage with expiration",
"auto clean local storage",
"browser"
],
"author": "Dias Kappassov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dias1c/hungry-local-storage/issues"
},
"homepage": "https://github.com/Dias1c/hungry-local-storage#readme",
"devDependencies": {
"@types/node": "^20.8.9",
"install": "^0.13.0",
"live-server": "^1.2.2",
"npm": "^10.2.4",
"tsx": "^3.14.0"
}
}