-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1011 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
34
35
36
{
"name": "localstorage-ttl",
"version": "2.0.10",
"description": "TS module to save data to localstorage with time to live. Data will expire after set time.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"format": "prettier --write .",
"prepublishOnly": "npm run build && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liesislukas/localstorage-ttl/"
},
"keywords": [
"localstorage",
"expire",
"ttl"
],
"author": "Lukas Liesis <liesislukas@gmail.com> (https://www.linkedin.com/in/lukas-liesis-05335626)",
"license": "MIT",
"bugs": {
"url": "https://github.com/liesislukas/localstorage-ttl/"
},
"homepage": "https://github.com/liesislukas/localstorage-ttl/",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"files": [
"dist"
],
"type": "module"
}