-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.65 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": "node-cache-plus",
"version": "2.0.3",
"type": "module",
"description": "A wrapper around the popular node-cache library, featuring tag-based invalidation, factory functions, and more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:docs": "typedoc --out docs ./src/index.ts",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"check": "biome check ./src --diagnostic-level=error --fix",
"check-tsc": "tsc --noEmit",
"test": "vitest run",
"ci": "pnpm check && pnpm test && pnpm build && pnpm check-exports",
"prepublishOnly": "pnpm run ci"
},
"keywords": [
"cache",
"caching",
"local",
"variable",
"multi",
"memory",
"internal",
"node",
"memcached",
"object",
"tags",
"factory",
"wrapper",
"helpers",
"cacheable"
],
"tags": [
"cache",
"caching",
"local",
"variable",
"multi",
"memory",
"internal",
"node",
"memcached",
"object",
"tags",
"factory",
"wrapper",
"helpers",
"cacheable"
],
"homepage": "https://github.com/apetta/node-cache-plus",
"bugs": {
"url": "https://github.com/apetta/node-cache-plus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apetta/node-cache-plus.git"
},
"author": "Akshay Petta <[email protected]> (https://akshaypetta.com)",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "~0.17.1",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "~2.27.10",
"@types/node": "~22.10.2",
"tsup": "~8.3.5",
"typedoc": "~0.27.5",
"typescript": "~5.7.2",
"vitest": "~2.1.8"
},
"dependencies": {
"node-cache": "^5.1.2"
}
}