mirror of
https://github.com/honojs/hono.git
synced 2024-11-25 13:19:30 +01:00
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "hono",
|
|
"version": "0.2.4",
|
|
"description": "[炎] Ultrafast web framework for Cloudflare Workers.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint --ext js,ts src .eslintrc.js test",
|
|
"build": "rimraf dist && tsc",
|
|
"watch": "tsc -w",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/yusukebe/hono.git"
|
|
},
|
|
"homepage": "https://github.com/yusukebe/hono",
|
|
"keywords": [
|
|
"web",
|
|
"app",
|
|
"http",
|
|
"application",
|
|
"framework",
|
|
"router",
|
|
"cloudflare",
|
|
"workers",
|
|
"fastly",
|
|
"compute@edge"
|
|
],
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^3.3.0",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/mustache": "^4.1.2",
|
|
"@types/node": "^17.0.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
|
"@typescript-eslint/parser": "^5.9.0",
|
|
"eslint": "^7.26.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-define-config": "^1.2.1",
|
|
"eslint-import-resolver-typescript": "^2.0.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-flowtype": "^5.7.2",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"form-data": "^4.0.0",
|
|
"jest": "^27.4.5",
|
|
"jest-environment-miniflare": "^2.0.0",
|
|
"mustache": "^4.2.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.2",
|
|
"typescript": "^4.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=11.0.0"
|
|
}
|
|
} |