-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 840 Bytes
/
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
{
"name": "cache-sqlite-lru-ttl",
"version": "1.0.0",
"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",
"prepublish": "vitest run && yarn build"
},
"dependencies": {
"better-sqlite3": "^8.1.0",
"cbor": "^8.1.0",
"debounce": "^1.2.1",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/debounce": "^1.2.1",
"@vitest/coverage-c8": "^0.29.1",
"typescript": "^4.9.5",
"vitest": "^0.29.1"
}
}