-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hyperstorage-js",
"version": "6.0.8",
"description": "A lightweight wrapper for localStorage/sessionStorage with efficient caching and type-preserving serialization.",
"license": "MIT",
"author": "Khoeckman",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.umd.js"
}
},
"files": [
"src/",
"dist/"
],
"scripts": {
"test": "exit 0",
"build": "rollup -c rollup.config.js",
"prepack": "npm run build"
},
"dependencies": {
"superjson": "^2.2.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-delete": "^3.0.2"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Khoeckman/HyperStorage#readme",
"bugs": {
"url": "https://github.com/Khoeckman/HyperStorage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Khoeckman/HyperStorage.git"
},
"keywords": [
"localStorage",
"sessionStorage",
"storage",
"utility",
"javascript",
"js",
"typescript",
"ts",
"ecmascript",
"es",
"umd",
"browser",
"client",
"module",
"commonjs"
]
}