forked from jkelin/cache-sqlite-lru-ttl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "cache-sqlite-lru-ttl",
"version": "1.2.1",
"author": "Jan Kelin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"cache",
"sqlite",
"lru",
"ttl"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jkelin/cache-sqlite-lru-ttl"
},
"scripts": {
"dev": "tsc --project tsconfig.build.json --watch",
"build": "tsc --project tsconfig.build.json",
"test": "vitest run && bun test",
"prepublish": "yarn test && yarn build",
"coverage": "vitest run --coverage"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"cbor": "^10.0.11",
"debounce": "^3.0.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "latest",
"@types/debounce": "^1.2.4",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c"
}