levelcache/package.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2020-02-05 17:11:30 +00:00
{
"name": "@pushrocks/levelcache",
2023-01-09 12:01:09 +00:00
"version": "3.0.3",
2020-02-05 17:11:30 +00:00
"private": false,
"description": "a cache that uses memory/disk/s3 as backup",
2021-04-23 18:40:57 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-22 21:45:12 +00:00
"type": "module",
2020-02-05 17:11:30 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-04-23 18:40:57 +00:00
"test": "(tstest test/ --web)",
2022-03-22 22:15:08 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2020-02-05 17:11:30 +00:00
},
"devDependencies": {
2022-06-09 17:23:55 +00:00
"@gitzone/tsbuild": "^2.1.63",
2023-01-09 12:01:08 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-06-09 17:23:55 +00:00
"@gitzone/tstest": "^1.0.71",
2022-04-04 12:18:36 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2023-01-09 12:01:08 +00:00
"@types/node": "^18.11.18"
2020-02-05 17:11:30 +00:00
},
"dependencies": {
2022-06-09 17:23:55 +00:00
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartbucket": "^2.0.2",
2020-02-05 17:11:30 +00:00
"@pushrocks/smartcache": "^1.0.13",
2022-06-09 17:23:55 +00:00
"@pushrocks/smartenv": "^5.0.2",
2022-03-22 21:45:12 +00:00
"@pushrocks/smartexit": "^1.0.20",
2022-06-09 17:23:55 +00:00
"@pushrocks/smartfile": "^10.0.1",
2023-01-09 12:01:08 +00:00
"@pushrocks/smartjson": "^5.0.5",
2022-03-22 21:45:12 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
2022-04-04 12:18:36 +00:00
"@pushrocks/smartstring": "^4.0.2",
2021-04-23 18:40:57 +00:00
"@pushrocks/smartunique": "^3.0.3",
2022-06-09 17:23:55 +00:00
"@pushrocks/taskbuffer": "^3.0.1"
2020-02-05 17:11:30 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-04-23 18:41:30 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-05 17:11:30 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-23 18:41:30 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-02-05 17:11:30 +00:00
]
2022-03-22 21:45:13 +00:00
}