-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@sylo-digital/kas",
"description": "Flexible caching solution - with robust, built-in TypeScript types.",
"version": "2.1.2",
"repository": "github:sylo-digital/kas.git",
"private": false,
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"lint": "eslint --cache --ext .ts .",
"build": "tsup",
"prepack ": "npm run build",
"prepublishOnly": "npm run build",
"format": "prettier --write src"
},
"keywords": [
"cache",
"key value",
"set",
"memory",
"redis"
],
"devDependencies": {
"@atlasbot/configs": "^10.5.12",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/better-sqlite3": "^7.6.4",
"@types/ms": "^0.7.31",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"better-sqlite3": "^8.5.2",
"dedent": "^1.5.1",
"ms": "^2.1.3",
"eslint": "^8.45.0",
"eslint-plugin-jsdoc": "^46.4.4",
"ioredis": "^5.3.2",
"prettier": "^3.0.0",
"testcontainers": "^9.11.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"msgpackr": "^1.9.7"
},
"peerDependencies": {
"better-sqlite3": "^8.5.2",
"ioredis": "^4.27 | ^5"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"ioredis": {
"optional": true
}
}
}