-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.39 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "0cache",
"description": "Cache expensive async/sync fetch and functions on any database. Inspired by Vercel's unstable_cache",
"homepage": "https://github.com/yoeven/0cache",
"repository": {
"type": "git",
"url": "git+https://github.com/yoeven/0cache.git"
},
"bugs": {
"url": "https://github.com/yoeven/0cache/issues"
},
"keywords": [
"caching",
"typescript",
"javascript",
"postgresql",
"nextjs",
"vercel"
],
"author": "yoeven",
"license": "MIT",
"type": "module",
"version": "0.0.7",
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"dev": "tsx --env-file=.env example/index.ts",
"build": "pkgroll --src=./",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/pako": "^2.0.3",
"pkgroll": "^2.27.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"pako": "^2.1.0",
"postgres": "^3.4.9"
}
}