webstore/package.json

50 lines
1.2 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",
2023-07-27 11:51:41 +00:00
"version": "2.0.9",
2020-07-09 22:30:33 +00:00
"private": false,
"description": "high performance storage in the browser using indexed db",
"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": {
2023-07-27 11:51:40 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/smartntml": "^2.0.4",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
2020-07-09 22:30:33 +00:00
},
"dependencies": {
2023-05-01 10:17:39 +00:00
"@apiglobal/typedrequest-interfaces": "^2.0.1",
2023-07-27 11:51:40 +00:00
"@push.rocks/lik": "^6.0.3",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartjson": "^5.0.6",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.6",
"fake-indexeddb": "^4.0.2",
2023-05-01 10:17:39 +00:00
"idb": "^7.1.1"
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"
]
2023-07-27 11:51:41 +00:00
}