-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 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
53
54
55
56
{
"name": "@cc-heart/storage-cache",
"version": "0.0.7",
"author": "Carl Chen",
"license": "MIT",
"description": "a localStorage cache implementation",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cc-hearts/storage-cache.git"
},
"keywords": [
"localStorage",
"sessionStorage",
"cache"
],
"exports": {
".": [
{
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
],
"./package.json": "./package.json",
"./*": "./*"
},
"bugs": {
"url": "https://github.com/cc-hearts/storage-cache/issues"
},
"homepage": "https://github.com/cc-hearts/storage-cache",
"scripts": {
"build": "rollup -c && tsc -p tsconfig.build.json",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@cc-heart/utils": "^5.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@vitest/coverage-v8": "^1.3.1",
"jsdom": "^24.0.0",
"rollup": "^4.12.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}