-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 KB
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
{
"name": "rexsync",
"version": "1.0.73",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/src/index.js",
"import": "./dist/esm/src/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"package.json",
"license.md",
"README.md"
],
"keywords": [
"redis",
"redis-vault",
"redis expiry sync",
"cache sync",
"redis cache",
"redis subscriber"
],
"scripts": {
"rewrite:import": "node rewriteImports.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && npm run rewrite:import",
"build": "npx enmav --update-version && rimraf ./dist && npm run build:cjs && npm run build:esm",
"build:release": "npx enmav --update-version && rimraf ./dist && npm run build:cjs && npm run build:esm && npm publish --access=public"
},
"author": "permaficus <abukhalif2019@gmail.com>",
"license": "MIT",
"description": "rexSync allows you to handle expired keys efficiently, whether it's for syncing data, triggering workflows, or maintaining logs",
"repository": {
"type": "git",
"url": "git+https://github.com/permaficus/rexSync.git"
},
"bugs": {
"url": "https://github.com/permaficus/rexSync/issues"
},
"homepage": "https://github.com/permaficus/rexSync/#readme",
"dependencies": {
"amqplib": "^0.10.4",
"axios": "^1.7.7",
"redis": "^4.7.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"enmav": "^0.7.12",
"rimraf": "^6.0.1"
}
}