-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 790 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 790 Bytes
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
{
"name": "bun-sqlite-cache",
"version": "1.2.0",
"author": "Varun Sahni <contact@vsahni.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/notskamr/bun-sqlite-cache.git"
},
"main": "dist/index.js",
"devDependencies": {
"@types/bun": "^1.0.0",
"@types/node": "^20.11.0",
"bun-plugin-dts": "^0.2.1",
"typescript": "^5.2.2"
},
"bugs": "https://github.com/wobsoriano/bun-sqlite-cache/issues",
"description": "",
"files": [
"dist"
],
"homepage": "https://github.com/notskamr/bun-sqlite-cache#readme",
"keywords": [
"bun",
"sqlite",
"cache",
"lru",
"ttl"
],
"license": "MIT",
"scripts": {
"build": "bun run build.mjs",
"prepublishOnly": "bun run build"
},
"types": "dist/index.d.ts"
}