Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions packages/aws-lambda/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/aws-lambda",
"type": "module",
"version": "0.8.0",
"description": "AWS Lambda adapter for Standard Server: transport-agnostic requests and responses with Lambda response streaming support",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,20 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/aws-lambda"
},
"keywords": [
"standardserver",
"aws",
"lambda",
"aws-lambda",
"serverless",
"adapter",
"response-streaming",
"server",
"request",
"response",
"streaming",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
16 changes: 16 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/core",
"type": "module",
"version": "0.8.0",
"description": "The Standard Server contract: transport-agnostic request, response, body, and streaming types with body parsing rules, runtime validators, and SSE helpers shared by every adapter",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,21 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/core"
},
"keywords": [
"standardserver",
"http",
"server",
"client",
"request",
"response",
"transport-agnostic",
"body-parser",
"validator",
"sse",
"server-sent-events",
"streaming",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
13 changes: 13 additions & 0 deletions packages/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/fastify",
"type": "module",
"version": "0.8.0",
"description": "Fastify adapter for Standard Server: transport-agnostic requests, responses, and streaming on top of Fastify's request and reply objects",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,18 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/fastify"
},
"keywords": [
"standardserver",
"fastify",
"adapter",
"http",
"server",
"request",
"response",
"streaming",
"sse",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
17 changes: 17 additions & 0 deletions packages/fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/fetch",
"type": "module",
"version": "0.8.0",
"description": "Fetch API adapter for Standard Server: transport-agnostic requests, responses, and streaming for browsers, workers, Deno, Bun, and any Fetch-based runtime",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,22 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/fetch"
},
"keywords": [
"standardserver",
"fetch",
"adapter",
"http",
"server",
"request",
"response",
"streaming",
"sse",
"browser",
"service-worker",
"deno",
"bun",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
15 changes: 15 additions & 0 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/node",
"type": "module",
"version": "0.8.0",
"description": "Node.js HTTP and HTTP/2 adapter for Standard Server: transport-agnostic requests, responses, and streaming on top of IncomingMessage and ServerResponse",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,20 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/node"
},
"keywords": [
"standardserver",
"node",
"nodejs",
"http",
"http2",
"adapter",
"server",
"request",
"response",
"streaming",
"sse",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
14 changes: 14 additions & 0 deletions packages/peer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/peer",
"type": "module",
"version": "0.8.0",
"description": "Message-based adapter for Standard Server: transport-agnostic requests, responses, and streaming over WebSocket, MessagePort, and custom peer transports",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,19 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/peer"
},
"keywords": [
"standardserver",
"peer",
"websocket",
"messageport",
"message-channel",
"adapter",
"transport",
"request",
"response",
"streaming",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@standardserver/shared",
"type": "module",
"version": "0.8.0",
"description": "Internal types and utilities shared across the Standard Server ecosystem",
"license": "MIT",
"funding": [
"https://github.com/sponsors/dinwwwh",
Expand All @@ -13,6 +14,13 @@
"url": "git+https://github.com/middleapi/standardserver.git",
"directory": "packages/shared"
},
"keywords": [
"standardserver",
"utils",
"utilities",
"internal",
"typescript"
],
"sideEffects": false,
"publishConfig": {
"exports": {
Expand Down
Loading