openpouch 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/LICENSE +202 -0
- package/NOTICE +2 -0
- package/README.md +20 -0
- package/openpouch.js +5918 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openpouch",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "openpouch 🦘 — the agent-native deployment control plane. Deploy any folder to a live URL in one command: npx openpouch deploy",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"openpouch": "openpouch.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"openpouch.js",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"NOTICE"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=20"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"deployment",
|
|
21
|
+
"deploy",
|
|
22
|
+
"cli",
|
|
23
|
+
"ai-agents",
|
|
24
|
+
"agent",
|
|
25
|
+
"mcp",
|
|
26
|
+
"devops",
|
|
27
|
+
"render",
|
|
28
|
+
"vercel",
|
|
29
|
+
"preview"
|
|
30
|
+
],
|
|
31
|
+
"homepage": "https://openpouch.sh",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/openpouch/openpouch.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/openpouch/openpouch/issues"
|
|
38
|
+
}
|
|
39
|
+
}
|