forked from AdiRishi/turborepo-remote-cache-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "turborepo-remote-cache-cf",
"description": "An implementation of the turborepo-remote-cache server custom made for Cloudflare Workers",
"keywords": [
"serverless",
"remote-caching",
"cloudflare-workers",
"vercel",
"turborepo",
"cloudflare-r2"
],
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Adishwar Rishi",
"url": "https://github.com/AdiRishi"
},
"homepage": "https://github.com/AdiRishi/turborepo-remote-cache-cloudflare",
"repository": {
"type": "git",
"url": "https://github.com/AdiRishi/turborepo-remote-cache-cloudflare.git"
},
"bugs": {
"url": "https://github.com/AdiRishi/turborepo-remote-cache-cloudflare/issues"
},
"license": "MIT",
"readme": "README.md",
"type": "module",
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"build": "wrangler deploy --dry-run --outdir dist",
"dev": "wrangler dev --test-scheduled",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 vitest run --coverage",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 vitest",
"lint": "eslint . --ext .ts,.js,.cjs,.mjs --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"miniflare": "^3.20231030.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6",
"vitest-environment-miniflare": "^2.14.1",
"wrangler": "^3.17.1"
},
"dependencies": {
"@hono/zod-validator": "^0.1.11",
"hono": "^3.10.3",
"zod": "^3.22.4"
},
"pnpm": {
"overrides": {
"@types/node": "20.8.3"
}
}
}