@cloudflare/vite-plugin 0.0.0-00cf67c53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@cloudflare/vite-plugin",
3
+ "version": "0.0.0-00cf67c53",
4
+ "description": "Cloudflare plugin for Vite",
5
+ "keywords": [
6
+ "cloudflare",
7
+ "workers",
8
+ "cloudflare-workers",
9
+ "vite",
10
+ "vite-plugin"
11
+ ],
12
+ "homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/vite-plugin-cloudflare#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/cloudflare/workers-sdk/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/cloudflare/workers-sdk.git",
19
+ "directory": "packages/vite-plugin-cloudflare"
20
+ },
21
+ "license": "MIT",
22
+ "sideEffects": false,
23
+ "type": "module",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js"
28
+ }
29
+ },
30
+ "main": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "dependencies": {
36
+ "@cloudflare/unenv-preset": "1.1.1",
37
+ "@hattip/adapter-node": "^0.0.49",
38
+ "unenv": "2.0.0-rc.1",
39
+ "ws": "8.18.0",
40
+ "miniflare": "0.0.0-00cf67c53"
41
+ },
42
+ "devDependencies": {
43
+ "@cloudflare/workers-types": "^4.20250214.0",
44
+ "@types/node": "^22.10.1",
45
+ "@types/ws": "^8.5.13",
46
+ "magic-string": "^0.30.12",
47
+ "mlly": "^1.7.4",
48
+ "tsup": "8.3.0",
49
+ "typescript": "^5.7.2",
50
+ "undici": "^5.28.5",
51
+ "vite": "^6.1.0",
52
+ "vitest": "~3.0.5",
53
+ "@cloudflare/mock-npm-registry": "0.0.0",
54
+ "@cloudflare/workers-shared": "0.0.0-00cf67c53",
55
+ "@cloudflare/workers-tsconfig": "0.0.0",
56
+ "wrangler": "0.0.0-00cf67c53"
57
+ },
58
+ "peerDependencies": {
59
+ "vite": "^6.1.0",
60
+ "wrangler": "^3.101.0"
61
+ },
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "workers-sdk": {
66
+ "prerelease": true
67
+ },
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "check:type": "tsc --build",
71
+ "dev": "tsup --watch",
72
+ "test": "vitest run",
73
+ "test:ci": "pnpm test && pnpm test:e2e",
74
+ "test:e2e": "vitest run -c e2e/vitest.config.ts",
75
+ "test:watch": "vitest"
76
+ }
77
+ }