0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-25 13:19:30 +01:00
hono/examples/compute-at-edge/package.json
Yusuke Wada d5280a1e0a
feat: Basic-auth with polyfill (#86)
* feat: Basic-auth with polyfill

Basic auth support Fastly Compute@Edge with polyfills

* Try-cache

* Add negative tests
2022-02-03 08:40:20 +09:00

31 lines
802 B
JSON

{
"name": "hono-example-compute-at-edge",
"version": "0.0.1",
"main": "index.js",
"author": "yusuke@kamawada.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yusukebe/hono.git"
},
"homepage": "https://github.com/yusukebe/hono",
"devDependencies": {
"buffer": "^6.0.3",
"core-js": "^3.19.1",
"crypto-browserify": "^3.12.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@fastly/js-compute": "^0.2.1",
"hono": "*"
},
"scripts": {
"prebuild": "webpack",
"dev": "fastly compute serve",
"build": "js-compute-runtime --skip-pkg bin/index.js bin/main.wasm",
"deploy": "npm run build && fastly compute deploy"
}
}