25 lines
597 B
JSON
25 lines
597 B
JSON
|
|
{
|
||
|
|
"name": "@the-order/cache",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"private": true,
|
||
|
|
"description": "Caching layer for The Order",
|
||
|
|
"main": "./src/index.ts",
|
||
|
|
"types": "./src/index.ts",
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc",
|
||
|
|
"dev": "tsc --watch",
|
||
|
|
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts'",
|
||
|
|
"type-check": "tsc --noEmit",
|
||
|
|
"test": "vitest run || true",
|
||
|
|
"test:watch": "vitest"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"redis": "^4.7.1"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^20.10.6",
|
||
|
|
"typescript": "^5.3.3",
|
||
|
|
"vitest": "^1.6.1"
|
||
|
|
}
|
||
|
|
}
|