-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 985 Bytes
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
{
"name": "store-iq",
"version": "1.0.0",
"description": "An easy to use alternative to directly using WebStorage and IndexedDB",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev-build": "tsup --config=tsup.dev.config.ts",
"build": "tsup --config=tsup.config.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TLTimeplex/storeIQ.git"
},
"keywords": [
"WebStorage",
"IndexedDB",
"Storage",
"Store",
"LocalStorage",
"SessionStorage"
],
"author": "Timeplex",
"license": "MIT",
"bugs": {
"url": "https://github.com/TLTimeplex/storeIQ/issues"
},
"homepage": "https://github.com/TLTimeplex/storeIQ#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}