webstore/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2020-07-09 22:30:33 +00:00
{
"name": "@pushrocks/webstore",
2023-05-01 10:17:40 +00:00
"version": "2.0.6",
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)",
2022-05-28 11:40:14 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2020-07-09 22:30:33 +00:00
},
"devDependencies": {
2023-05-01 10:17:39 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
2022-08-01 13:50:05 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-05-01 10:17:39 +00:00
"@types/node": "^18.16.3"
2020-07-09 22:30:33 +00:00
},
"dependencies": {
2023-05-01 10:17:39 +00:00
"@apiglobal/typedrequest-interfaces": "^2.0.1",
"@pushrocks/lik": "^6.0.2",
"@pushrocks/smartenv": "^5.0.5",
"@pushrocks/smartjson": "^5.0.5",
"@pushrocks/smartpromise": "^4.0.2",
"@pushrocks/smartrx": "^3.0.0",
"fake-indexeddb": "^4.0.1",
"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"
]
2020-10-17 16:38:22 +00:00
}