-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "vite-plugin-cloudflare-pages",
"version": "0.0.1",
"license": "MIT",
"author": "Taro Woollett-Chiba",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"vite-repo-build": "unbuild && pnpm run patch-cjs",
"patch-cjs": "tsx ../../scripts/patchCJS.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/potatopotaro/vite-plugin-cloudflare-pages.git"
},
"bugs": {
"url": "https://github.com/potatopotaro/vite-plugin-cloudflare-pages/issues"
},
"homepage": "https://github.com/potatopotaro/vite-plugin-cloudflare-pages#readme",
"peerDependencies": {
"vite": "^3.0.0-beta.5"
},
"description": "A Vite plugin for SSR development on Cloudflare Pages. Includes convenient build tooling + a Miniflare integration for Vite's dev server (no need for a separate proxy server).",
"devDependencies": {
"@cloudflare/workers-types": "^3.14.0",
"@types/debug": "^4.1.7",
"debug": "^4.3.4",
"miniflare": "^2.5.1",
"unbuild": "^0.7.4",
"vite-plugin-inspect": "^0.5.1"
}
}