0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00
hono/package.json

132 lines
3.8 KiB
JSON
Raw Normal View History

2021-12-14 20:26:22 +01:00
{
"name": "hono",
2022-04-22 02:21:19 +02:00
"version": "1.0.0",
2022-04-22 02:01:51 +02:00
"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",
"lint:fix": "eslint --ext js,ts src .eslintrc.js --fix",
"build": "rimraf dist && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"watch": "tsc -w --project tsconfig.build.json & tsc-alias -w -p tsconfig.build.json",
"prepublishOnly": "yarn build"
},
"exports": {
".": "./dist/index.js",
2022-04-22 02:01:51 +02:00
"./basic-auth": "./dist/middleware/basic-auth/index.js",
"./body-parse": "./dist/middleware/body-parse/index.js",
"./cookie": "./dist/middleware/cookie/index.js",
"./cors": "./dist/middleware/cors/index.js",
"./etag": "./dist/middleware/etag/index.js",
"./graphql-server": "./dist/middleware/graphql-server/index.js",
"./logger": "./dist/middleware/logger/index.js",
"./mustache": "./dist/middleware/mustache/index.js",
"./powered-by": "./dist/middleware/powered-by/index.js",
"./pretty-json": "./dist/middleware/pretty-json/index.js",
"./serve-static": "./dist/middleware/serve-static/index.js",
"./router/trie-router": "./dist/router/trie-router/index.js",
"./router/reg-exp-router": "./dist/router/reg-exp-router/index.js",
"./utils/*": "./dist/utils/*.js"
},
"typesVersions": {
"*": {
"basic-auth": [
"./dist/middleware/basic-auth"
],
"body-parse": [
"./dist/middleware/body-parse"
],
"cookie": [
"./dist/middleware/cookie"
],
"cors": [
"./dist/middleware/cors"
],
2022-03-16 10:41:31 +01:00
"etag": [
"./dist/middleware/etag"
2022-03-16 10:41:31 +01:00
],
"graphql-server": [
"./dist/middleware/graphql-server"
],
"logger": [
"./dist/middleware/logger"
],
"mustache": [
"./dist/middleware/mustache"
],
"powered-by": [
"./dist/middleware/powered-by"
],
"pretty-json": [
"./dist/middleware/pretty-json"
],
"serve-static": [
"./dist/middleware/serve-static"
],
"router/trie-router": [
"./dist/router/trie-router/router.d.ts"
],
"router/reg-exp-router": [
"./dist/router/reg-exp-router/router.d.ts"
2022-03-29 07:49:14 +02:00
],
"utils/*": [
"./dist/utils/*"
]
}
},
2021-12-14 20:26:22 +01:00
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
2021-12-14 20:58:45 +01:00
"license": "MIT",
2021-12-14 21:26:01 +01:00
"repository": {
"type": "git",
"url": "https://github.com/yusukebe/hono.git"
},
"homepage": "https://github.com/yusukebe/hono",
2022-01-02 14:01:09 +01:00
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"router",
"cloudflare",
"workers",
"fastly",
"compute@edge"
],
2021-12-14 20:58:45 +01:00
"devDependencies": {
"@cloudflare/workers-types": "^3.3.0",
"@types/crypto-js": "^4.1.1",
"@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",
"crypto-js": "^4.1.1",
"eslint": "^7.26.0",
2022-02-17 13:24:08 +01:00
"eslint-config-prettier": "^8.3.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",
"form-data": "^4.0.0",
"graphql": "^16.3.0",
"jest": "^27.4.5",
"jest-environment-miniflare": "^2.0.0",
"mustache": "^4.2.0",
2022-02-17 13:24:08 +01:00
"prettier": "^2.5.1",
"prettier-plugin-md-nocjsp": "^1.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"tsc-alias": "^1.6.6",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=11.0.0"
2021-12-14 20:58:45 +01:00
}
2022-03-10 07:45:13 +01:00
}