-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·103 lines (103 loc) · 2.89 KB
/
package.json
File metadata and controls
executable file
·103 lines (103 loc) · 2.89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "i45",
"version": "3.0.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"alpha-patch": "npm version prerelease --preid=alpha",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"test:verbose": "jest --verbose",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"checkin": "git add . && git commit -a -m \"See docs/revisions.md for a list of Revisions.\" ",
"link": "npm run build && npm link",
"build": "npm run clean && npm run build:types && npm run build:bundle",
"build:types": "tsc --emitDeclarationOnly",
"build:bundle": "rollup -c",
"clean": "rm -rf dist",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"localStorage",
"sessionStorage",
"browser-storage",
"web-storage",
"storage-wrapper",
"data-persistence",
"client-side-storage",
"storage-manager",
"browser-cache",
"session-management",
"local-storage",
"storage-api",
"javascript-storage",
"typescript-storage"
],
"author": "CIS Guru <cisguru@outlook.com>",
"license": "MIT",
"description": "A powerful, type-safe wrapper for browser storage (localStorage, sessionStorage) with built-in logging, validation, and error handling. Simplifies storing and retrieving collections in web applications.",
"files": [
"dist",
"dist/core",
"dist/errors",
"dist/models",
"dist/services",
"dist/utils",
"docs",
"README.md",
"revisions.md",
"package.json"
],
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/xnodeoncode/i45",
"repository": {
"type": "git",
"url": "git+https://github.com/xnodeoncode/i45.git"
},
"bugs": {
"url": "https://github.com/xnodeoncode/i45/issues"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@jest/globals": "^30.2.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fake-indexeddb": "^6.2.5",
"globals": "^16.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prop-types": "^15.8.1",
"rollup": "^4.53.5",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"i45-jslogger": "^2.0.1",
"i45-sample-data": "^3.1.0"
}
}