-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "response-cache-kit",
"version": "1.2.0",
"description": "Framework-agnostic response caching toolkit for Node.js services.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist",
"docs",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.mjs && tsc -p tsconfig.types.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"benchmark": "npm run build && node scripts/benchmark.mjs",
"benchmark:http": "npm run build && node benchmarks/http.mjs",
"benchmark:compare": "npm run build && node benchmarks/compare.mjs",
"pack:check": "node scripts/check-pack-contents.mjs",
"prepublishOnly": "npm run typecheck && npm run test:coverage && npm run build && npm audit --omit=dev && npm run pack:check"
},
"keywords": [
"response-cache",
"http-cache",
"cache",
"nodejs",
"typescript",
"single-flight",
"cache-hub",
"vext"
],
"homepage": "https://github.com/vextjs/response-cache-kit#readme",
"bugs": {
"url": "https://github.com/vextjs/response-cache-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vextjs/response-cache-kit.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"cache-hub": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "^0.28.0",
"typescript": "^5.4.0",
"vitest": "^4.1.8"
}
}