-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
50
51
52
53
54
{
"type": "module",
"name": "@hyperjumptech/ztorage",
"description": "A flexible and type-safe wrapper for key-value storage",
"version": "1.0.3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf dist && rollup -c",
"format": "biome format . --write",
"format:check": "biome format .",
"lint": "biome check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "1.0.0",
"@vitest/coverage-v8": "^0.34.3",
"esbuild": "^0.19.2",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.1",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
},
"peerDependencies": {
"zod": "*"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Kevin Hermawan",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjumptech/ztorage.git"
},
"bugs": {
"url": "https://github.com/hyperjumptech/ztorage/issues"
},
"homepage": "https://github.com/hyperjumptech/ztorage#readme",
"keywords": [
"wrapper",
"type-safe",
"type validation",
"key-value storage",
"web storage",
"localStorage",
"sessionStorage"
]
}