-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "tiered-cache",
"version": "0.2.1",
"description": "Simple tiered cache.",
"keywords": [
"cache",
"cache management"
],
"author": "Surya Oktafendri <[email protected]>",
"main": "./dist/index.js",
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js",
"./adapters": "./dist/adapters/index.js"
},
"scripts": {
"build": "pnpm clean && tsc",
"build:watch": "pnpm clean && tsc --watch",
"clean": "pnpm exec rimraf dist/",
"madge": "pnpm exec madge --circular --extensions ts ./src",
"start": "node dist",
"start:build": "pnpm build && pnpm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"ioredis": "^5.4.1",
"madge": "^6.1.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"typescript": "^5.6.2"
}
}