-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.14 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
{
"name": "cf-worker-vue-stream",
"version": "1.0.0",
"description": "Cloudflare Workers Vuejs SSR Stream",
"type": "module",
"scripts": {
"dev": "vite",
"publish": "npm run build && npx rename-cli dist/client/index.html template.html && wrangler publish worker.js",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr server.js --outDir dist/server",
"preview": "npm run build && npx rename-cli dist/client/index.html template.html && wrangler dev --local worker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daliborgogic/cf-worker-vue-stream.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daliborgogic/cf-worker-vue-stream/issues"
},
"homepage": "https://github.com/daliborgogic/cf-worker-vue-stream#readme",
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.3",
"@vueuse/head": "^0.7.9",
"nprogress": "^0.2.0",
"vite": "^3.0.9",
"vue": "^3.2.37",
"vue-router": "^4.1.4",
"wrangler": "^2.0.27"
}
}