wasper-cli 0.1.0
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/bin/wasper.js +2 -0
- package/dist/cli.js +6682 -0
- package/dist/index.js +6538 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wasper-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Host an MCP server + API proxy from any OpenAPI spec. Like Drizzle Studio, but for APIs.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"homepage": "https://wasper.site",
|
|
7
|
+
"bin": {
|
|
8
|
+
"wasper": "./bin/wasper.js"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "bun --hot cli.ts",
|
|
16
|
+
"build": "bun build ./cli.ts ./index.ts --outdir=dist --target=bun",
|
|
17
|
+
"start": "bun dist/cli.js",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"build:bin": "bun scripts/build-binaries.ts",
|
|
20
|
+
"prepublishOnly": "bun run build && chmod +x bin/wasper.js dist/cli.js"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"wasper",
|
|
24
|
+
"mcp",
|
|
25
|
+
"openapi",
|
|
26
|
+
"api",
|
|
27
|
+
"agent",
|
|
28
|
+
"claude",
|
|
29
|
+
"ai"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/bun": "latest",
|
|
34
|
+
"@types/js-yaml": "^4.0.9",
|
|
35
|
+
"typescript": "^5"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"js-yaml": "^4.2.0"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"bun": ">=1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"bun": ">=1.0.0"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"bin",
|
|
48
|
+
"dist/cli.js",
|
|
49
|
+
"dist/index.js",
|
|
50
|
+
"README.md",
|
|
51
|
+
"LICENSE"
|
|
52
|
+
],
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/broisnischal/wasper.git"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
}
|
|
60
|
+
}
|