webstore/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2020-07-09 22:30:33 +00:00
{
"name": "@pushrocks/webstore",
2022-01-24 03:40:22 +00:00
"version": "1.0.18",
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",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-09 22:39:35 +00:00
"test": "(tstest test/ --web)",
2020-09-18 10:12:02 +00:00
"build": "(tsbuild --web)"
2020-07-09 22:30:33 +00:00
},
"devDependencies": {
2022-01-24 03:39:12 +00:00
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^4.0.0",
"@types/node": "^17.0.10",
2020-09-18 10:12:02 +00:00
"tslint": "^6.1.3",
2020-07-09 22:30:33 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2020-10-17 16:38:22 +00:00
"@apiglobal/typedrequest-interfaces": "^1.0.15",
2022-01-24 03:39:12 +00:00
"@pushrocks/lik": "^5.0.0",
"@pushrocks/smartjson": "^4.0.6",
"@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartrx": "^2.0.20",
"idb": "^7.0.0"
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
}