-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.44 KB
/
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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cachified-adapter-cloudflare-kv",
"description": "Cloudflare KV adapter for @epic-web/cachified",
"version": "2.3.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"cache",
"@epic-web/cachified",
"cachified",
"cloudflare",
"cloudflare-workers",
"cloudflare kv"
],
"author": {
"name": "Adishwar Rishi",
"url": "https://github.com/AdiRishi"
},
"homepage": "https://github.com/AdiRishi/cachified-adapter-cloudflare-kv",
"repository": {
"type": "git",
"url": "https://github.com/AdiRishi/cachified-adapter-cloudflare-kv.git"
},
"bugs": {
"url": "https://github.com/AdiRishi/cachified-adapter-cloudflare-kv/issues"
},
"license": "MIT",
"readme": "README.md",
"engines": {
"node": ">=20"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"lint": "eslint . && prettier --check . ",
"test": "vitest run --coverage",
"test:ui": "vitest --coverage --ui",
"format": "prettier --write ."
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@cloudflare/vitest-pool-workers": "0.6.12",
"@cloudflare/workers-types": "^4.20250204.0",
"@epic-web/cachified": "^5.5.0",
"@eslint/js": "^9.20.0",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.1",
"@vitest/coverage-istanbul": "2.1.9",
"@vitest/ui": "2.1.9",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "2.1.9"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20250204.0",
"@epic-web/cachified": "^5.5.0"
},
"peerDependenciesMeta": {
"@cloudflare/workers-types": {
"optional": true
}
},
"packageManager": "[email protected]"
}