mirror of
https://github.com/honojs/hono.git
synced 2024-11-25 13:19:30 +01:00
d5280a1e0a
* feat: Basic-auth with polyfill Basic auth support Fastly Compute@Edge with polyfills * Try-cache * Add negative tests
31 lines
802 B
JSON
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"
|
|
}
|
|
} |