-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@soundxyz/fine-grained-cache",
"version": "3.1.0",
"description": "Fine-grained cache helper using redis",
"keywords": [
"redis",
"cache"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soundxyz/fine-grained-cache.git"
},
"license": "MIT",
"author": "PabloSzx <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "concurrently -r \"bob-ts -f interop -i src -d dist --no-sourcemap\" \"tsc -p tsconfig.build.json\"",
"release": "changeset publish",
"test": "c8 --include=src --exclude=src/promise.ts ava",
"test:html": "c8 -r=lcov --include=src --exclude=src/promise.ts ava && pnpm dlx serve coverage/lcov-report",
"test:watch": "ava --watch",
"test:watch:coverage": "bob-watch -w src test package.json -c \"pnpm test\""
},
"dependencies": {
"lru-cache": "^9.1.0",
"ms": "3.0.0-canary.1",
"superjson": "^1.12.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.11",
"ava": "^5.2.0",
"bob-ts": "^4.1.1",
"bob-tsm": "^1.1.2",
"c8": "^7.13.0",
"concurrently": "^8.0.1",
"date-fns": "^2.29.3",
"esbuild": "^0.17.17",
"execa": "^7.1.1",
"ioredis": "^5.3.2",
"prettier": "^2.8.7",
"redlock": "5.0.0-beta.2",
"typescript": "^5.0.4",
"wait-for-expect": "^3.0.2"
},
"peerDependencies": {
"ioredis": "^5.2.4",
"redlock": "5.0.0-beta.2"
},
"peerDependenciesMeta": {
"redlock": {
"optional": true
}
},
"engines": {
"node": ">=16"
}
}