-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 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
{
"name": "@ponjimon/vite-plugin-tss-cloudflare-proxy",
"description": "A Vite plugin to make Cloudflare Bindings work locally when using TanStack Start.",
"keywords": [
"vite",
"cloudflare",
"wrangler",
"tsup",
"typescript",
"proxy",
"bindings",
"tanstack",
"start",
"plugin",
"vite-plugin"
],
"version": "0.0.7",
"author": "Ponjimon (https://github.com/ponjimon)",
"repository": {
"type": "git",
"url": "https://github.com/ponjimon/vite-plugin-tss-cloudflare-proxy.git"
},
"module": "dist/index.js",
"dependencies": {
"wrangler": "^3.78.11"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@cloudflare/workers-types": "^4.20240925.0",
"@types/bun": "^1.1.10",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vinxi": "^0.4.3",
"vite": "^5.4.8"
},
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.14.1"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/ponjimon/vite-plugin-tss-cloudflare-proxy",
"license": "MIT",
"packageManager": "bun@1.1.29",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepack": "bun run build",
"publish:jsr": "bunx jsr publish",
"publish:npm": "bunx @morlay/bunpublish",
"lint": "biome check ."
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild",
"workerd"
],
"type": "module"
}