-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "local-storage-expirable",
"version": "0.1.0",
"description": "A wrapper of `localStorage`, making it expirable",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"test": "vitest",
"lint": "eslint src/**/*.{js,ts} --fix",
"build": "vite build",
"gen-types": "node script/build-types.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noah19846/local-storage-exp.git"
},
"keywords": [
"localStorage",
"expired"
],
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-kisama": "^1.0.0",
"jsdom": "^20.0.1",
"prettier": "^2.7.1",
"ts-morph": "^16.0.0",
"typescript": "^4.7.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
}
}