-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 761 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
{
"name": "cache-manager-bun-sqlite",
"version": "0.1.3",
"description": "Bun sqlite implementation for cache-manager",
"repository": {
"type": "git",
"url": "https://github.com/nxht/cache-manager-bun-sqlite"
},
"keywords": ["bun", "sqlite", "cache-manager"],
"license": "MIT",
"files": ["dist", "src"],
"main": "./dist/index.js",
"types": "./src/index.ts",
"exports": {
"bun": "./src/index.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm dist -rf && bun run build.ts",
"lint": "biome check --apply src/",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"cache-manager": "^5.7.6",
"typescript": "^5.5.4"
}
}