-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.07 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "web-porridge",
"version": "3.0.0",
"description": "Feature-enhanced wrappers for the Storage and IndexedDB APIs",
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"fix": "eslint --fix ./src",
"lint:code": "eslint **/*.json src/*.ts --no-warn-ignored",
"lint:deps": "knip --production",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
"prepare": "husky install",
"start": "npm run dev",
"test": "uvu -r tsm tests"
},
"type": "module",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
},
"./types": {
"import": "./lib/index.d.ts"
}
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/web-porridge.git"
},
"keywords": [
"webstorage",
"local-storage",
"localstorage",
"session-storage",
"sessionstorage",
"storage api",
"indexeddb"
],
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true,
"dependencies": {
"dot-prop": "^9.0.0",
"idb-keyval": "^6.2.1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"browser-env": "^3.3.0",
"cross-env": "^7.0.3",
"eslint": "^9.5.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-unicorn": "^54.0.0",
"fake-indexeddb": "^6.0.0",
"husky": "^9.0.11",
"knip": "^5.23.0",
"lint-staged": "^15.2.7",
"localstorage-polyfill": "^1.0.1",
"node-navigator": "^1.0.1",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.2",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.0",
"remark-preset-prettier": "^2.0.1",
"rimraf": "^5.0.7",
"tslib": "^2.6.3",
"tsm": "^2.3.0",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"uvu": "^0.5.6"
},
"lint-staged": {
"*.(json|ts)": "eslint --cache --fix",
"*.md": "prettier --write"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}