@powerduck/openapi-request 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +711 -0
- package/dist/credentials-Cl0G4KpE.d.cts +783 -0
- package/dist/credentials-rqEKODvf.d.ts +783 -0
- package/dist/index-1jRrFc3d.d.cts +215 -0
- package/dist/index-CsRXyS7O.d.ts +215 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +350 -0
- package/dist/index.d.ts +350 -0
- package/dist/index.js +1 -0
- package/dist/protocol-D7sEx8IP.d.ts +62 -0
- package/dist/protocol-Dh-wN2nY.d.cts +62 -0
- package/dist/protocols/graphql/index.cjs +1 -0
- package/dist/protocols/graphql/index.d.cts +95 -0
- package/dist/protocols/graphql/index.d.ts +95 -0
- package/dist/protocols/graphql/index.js +1 -0
- package/dist/protocols/grpc/index.cjs +1 -0
- package/dist/protocols/grpc/index.d.cts +61 -0
- package/dist/protocols/grpc/index.d.ts +61 -0
- package/dist/protocols/grpc/index.js +1 -0
- package/dist/protocols/http/index.cjs +1 -0
- package/dist/protocols/http/index.d.cts +161 -0
- package/dist/protocols/http/index.d.ts +161 -0
- package/dist/protocols/http/index.js +1 -0
- package/dist/protocols/mcp/index.cjs +1 -0
- package/dist/protocols/mcp/index.d.cts +3 -0
- package/dist/protocols/mcp/index.d.ts +3 -0
- package/dist/protocols/mcp/index.js +1 -0
- package/dist/protocols/ws/index.cjs +1 -0
- package/dist/protocols/ws/index.d.cts +35 -0
- package/dist/protocols/ws/index.d.ts +35 -0
- package/dist/protocols/ws/index.js +1 -0
- package/dist/types-C9ifzKqk.d.cts +1226 -0
- package/dist/types-C9ifzKqk.d.ts +1226 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@powerduck/openapi-request",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "OpenAPI 3.2 collection debugger with HTTP, SSE and WebSocket support, plus response write-back",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./http": {
|
|
16
|
+
"types": "./dist/protocols/http/index.d.ts",
|
|
17
|
+
"import": "./dist/protocols/http/index.js",
|
|
18
|
+
"require": "./dist/protocols/http/index.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./ws": {
|
|
21
|
+
"types": "./dist/protocols/ws/index.d.ts",
|
|
22
|
+
"import": "./dist/protocols/ws/index.js",
|
|
23
|
+
"require": "./dist/protocols/ws/index.cjs"
|
|
24
|
+
},
|
|
25
|
+
"./grpc": {
|
|
26
|
+
"types": "./dist/protocols/grpc/index.d.ts",
|
|
27
|
+
"import": "./dist/protocols/grpc/index.js",
|
|
28
|
+
"require": "./dist/protocols/grpc/index.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./mcp": {
|
|
31
|
+
"types": "./dist/protocols/mcp/index.d.ts",
|
|
32
|
+
"import": "./dist/protocols/mcp/index.js",
|
|
33
|
+
"require": "./dist/protocols/mcp/index.cjs"
|
|
34
|
+
},
|
|
35
|
+
"./graphql": {
|
|
36
|
+
"types": "./dist/protocols/graphql/index.d.ts",
|
|
37
|
+
"import": "./dist/protocols/graphql/index.js",
|
|
38
|
+
"require": "./dist/protocols/graphql/index.cjs"
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist",
|
|
44
|
+
"README.md",
|
|
45
|
+
"LICENSE"
|
|
46
|
+
],
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18.17.0"
|
|
49
|
+
},
|
|
50
|
+
"sideEffects": false,
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"dev": "tsup --watch",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"test:unit": "vitest run tests/unit",
|
|
57
|
+
"test:integration": "vitest run tests/integration",
|
|
58
|
+
"test:coverage": "vitest run --coverage",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"lint": "eslint src --ext .ts",
|
|
61
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
62
|
+
},
|
|
63
|
+
"keywords": [
|
|
64
|
+
"openapi",
|
|
65
|
+
"openapi-3.2",
|
|
66
|
+
"postman",
|
|
67
|
+
"postman-runtime",
|
|
68
|
+
"sse",
|
|
69
|
+
"websocket",
|
|
70
|
+
"api-debugger"
|
|
71
|
+
],
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@grpc/grpc-js": "^1.14.4",
|
|
75
|
+
"@grpc/proto-loader": "^0.8.1",
|
|
76
|
+
"@grpc/reflection": "^1.0.4",
|
|
77
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
78
|
+
"graphql": "^16.14.2",
|
|
79
|
+
"postman-collection": "^5.3.1",
|
|
80
|
+
"postman-runtime": "^7.56.1",
|
|
81
|
+
"ws": "^8.21.3",
|
|
82
|
+
"zod": "^4.5.4"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@types/node": "^22.10.0",
|
|
86
|
+
"@types/postman-collection": "^3.5.11",
|
|
87
|
+
"@types/ws": "^8.5.13",
|
|
88
|
+
"terser": "^5.51.2",
|
|
89
|
+
"tsup": "^8.3.5",
|
|
90
|
+
"typescript": "^5.7.2",
|
|
91
|
+
"vitest": "^2.1.8"
|
|
92
|
+
}
|
|
93
|
+
}
|