-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
76
77
78
{
"name": "@sejohnson/redlimit",
"version": "1.0.0-alpha.3",
"description": "Locking mechanisms based on Redis",
"type": "module",
"scripts": {
"eslint": "eslint \"src/**/*.ts\"",
"eslint-fix": "eslint \"src/**/*.ts\" --fix",
"prettier": "prettier --check .",
"prettier-fix": "prettier . --write",
"type-check": "tsc --noEmit",
"build": "tsup",
"format": "prettier --write . --ignore-path .gitignore",
"test": "pnpm test:unit",
"test:unit": "vitest run",
"test:watch": "vitest",
"publint": "npx publint",
"release": "pnpm build && changeset publish",
"version-packages": "changeset version && pnpm i --no-frozen-lockfile && git add ."
},
"repository": {
"type": "git",
"url": "https://github.com/tcc-sejohnson/redlimit"
},
"keywords": [
"redis",
"redlock",
"mutex",
"semaphore",
"redlimit"
],
"author": "S. Elliott Johnson (permanently.gruntled@gmail.com)",
"license": "MIT",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
},
"default": "./dist/index.js"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/debug": "^4.1.12",
"@types/ioredis-mock": "^8.2.5",
"@types/node": "20.11.21",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"ioredis": "^5.3.2",
"ioredis-mock": "^8.9.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"engines": {
"node": ">= 16.0.1"
},
"peerDependencies": {
"ioredis": "^4.1.0 || ^5"
},
"dependencies": {
"debug": "^4.3.4"
},
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2",
"publishConfig": {
"access": "public"
}
}