@cloudflare/vite-plugin 0.0.0-229d00fce

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,70 @@
1
+ {
2
+ "name": "@cloudflare/vite-plugin",
3
+ "version": "0.0.0-229d00fce",
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
+ "@hattip/adapter-node": "^0.0.49",
37
+ "unenv": "npm:unenv-nightly@2.0.0-20241218-183400-5d6aec3",
38
+ "ws": "^8.18.0",
39
+ "miniflare": "0.0.0-229d00fce"
40
+ },
41
+ "devDependencies": {
42
+ "@cloudflare/workers-types": "^4.20241230.0",
43
+ "@types/node": "^22.10.1",
44
+ "@types/ws": "^8.5.13",
45
+ "magic-string": "^0.30.12",
46
+ "tsup": "^8.3.0",
47
+ "typescript": "^5.7.2",
48
+ "vite": "^6.0.7",
49
+ "@cloudflare/workers-shared": "0.0.0-229d00fce",
50
+ "wrangler": "0.0.0-229d00fce",
51
+ "@cloudflare/workers-tsconfig": "0.0.0"
52
+ },
53
+ "peerDependencies": {
54
+ "vite": "^6.0.7",
55
+ "wrangler": "^3.101.0"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "workers-sdk": {
61
+ "prerelease": true
62
+ },
63
+ "scripts": {
64
+ "build": "tsup",
65
+ "check:type": "tsc --build",
66
+ "test": "vitest",
67
+ "test:ci": "vitest run",
68
+ "watch": "tsup --watch"
69
+ }
70
+ }