webstore/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2020-07-09 22:30:33 +00:00
{
2023-07-27 11:51:40 +00:00
"name": "@push.rocks/webstore",
2024-05-17 15:46:56 +00:00
"version": "2.0.17",
2020-07-09 22:30:33 +00:00
"private": false,
2024-05-17 15:46:56 +00:00
"description": "A high-performance storage solution for web applications using IndexedDB.",
2020-07-09 22:30:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-28 10:33:10 +00:00
"type": "module",
2020-07-09 22:30:33 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-09 22:39:35 +00:00
"test": "(tstest test/ --web)",
2023-07-27 11:51:40 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2020-07-09 22:30:33 +00:00
},
"devDependencies": {
2024-05-17 14:35:40 +00:00
"@git.zone/tsbuild": "^2.1.76",
2023-09-23 08:08:50 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-04-18 18:51:59 +00:00
"@git.zone/tstest": "^1.0.90",
2023-07-27 11:51:40 +00:00
"@push.rocks/smartntml": "^2.0.4",
2024-04-18 18:51:59 +00:00
"@push.rocks/tapbundle": "^5.0.23",
2024-05-17 14:35:40 +00:00
"@types/node": "^20.12.12"
2020-07-09 22:30:33 +00:00
},
"dependencies": {
2023-05-01 10:17:39 +00:00
"@apiglobal/typedrequest-interfaces": "^2.0.1",
2024-05-17 14:35:40 +00:00
"@push.rocks/lik": "^6.0.15",
2024-04-18 18:51:59 +00:00
"@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartjson": "^5.0.19",
2023-07-27 11:51:40 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-04-18 18:51:59 +00:00
"@push.rocks/smartrx": "^3.0.7",
"fake-indexeddb": "^5.0.2",
2024-05-17 14:35:40 +00:00
"@tempfix/idb": "^8.0.3"
2020-07-09 22:30:33 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:42:46 +00:00
],
"keywords": [
"indexeddb",
"browser storage",
"high performance",
"typescript",
"database",
"web development",
"data persistence",
"storage solution",
"typed requests",
2024-05-17 15:46:56 +00:00
"performance optimization",
"API caching",
"efficient data management"
2020-07-09 22:30:33 +00:00
]
2024-05-17 15:46:56 +00:00
}