-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "@next-boost/hybrid-disk-cache",
"version": "0.2.2",
"description": "A hybrid disk cache utilize both the database and the file system.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "rm -rf dist && yarn build",
"lint": "prettier -c test/*.ts",
"test": "vitest",
"test-cov": "vitest --coverage --coverage.exclude=src/adapter.ts --coverage.exclude=src/bench.ts --coverage.exclude=test/*.ts"
},
"files": [
"dist",
"README.md"
],
"author": {
"name": "Rakuraku Jyo",
"email": "jyo.rakuraku@gmail.com"
},
"homepage": "https://github.com/next-boost/hybrid-disk-cache",
"repository": {
"type": "git",
"url": "https://github.com/next-boost/hybrid-disk-cache.git"
},
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.3.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.4",
"@vitest/coverage-v8": "^2.0.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcovonly",
"html"
],
"sourceMap": true
},
"keywords": [
"disk-cache",
"file-cache",
"ttl",
"sqlite3",
"cache"
],
"publishConfig": {
"access": "public"
}
}