forked from JasparGupta/cache-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.72 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": "@hirespace/hs-cache-manager",
"version": "3.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"browser",
"cache",
"cookies",
"node",
"redis"
],
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint 'src/**' --ext .ts --quiet",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean && npm run test && npm run lint",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run build",
"prepublish:beta": "npm version prerelease --preid beta --allow-same-version",
"publish:beta": "npm publish --scope @hirespace --tag beta"
},
"peerDependencies": {
"@upstash/redis": "^1.20.0",
"@vercel/kv": "^0.2.2",
"cookie": "^0.5.0",
"cookies-next": "^2.1.1",
"crypto-js": "^4.1.1",
"redis": "^4.1.0"
},
"peerDependenciesMeta": {
"@upstash/redis": {
"optional": true
},
"@vercel/kv": {
"optional": true
},
"cookie": {
"optional": true
},
"cookies-next": {
"optional": true
},
"crypto-js": {
"optional": true
},
"redis": {
"optional": true
}
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^28.1.2",
"@types/node": "^18.17.19",
"date-fns": "^2.28.0",
"eslint": "^8.43.0",
"eslint-config-hirespace": "^3.3.2",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"ts-jest": "^28.0.5",
"typescript": "^5.2.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/hirespace/hs-cache-manager.git"
}
}