@portofcontext/pctx 0.1.1
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/.gitignore +2 -0
- package/CHANGELOG.md +36 -0
- package/LICENSE +21 -0
- package/README.md +130 -0
- package/binary-install.js +212 -0
- package/binary.js +126 -0
- package/install.js +4 -0
- package/npm-shrinkwrap.json +901 -0
- package/package.json +84 -0
- package/run-generate-cli-docs.js +4 -0
- package/run-pctx.js +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/portofcontext/pctx/releases/download/v0.1.1",
|
|
3
|
+
"bin": {
|
|
4
|
+
"generate-cli-docs": "run-generate-cli-docs.js",
|
|
5
|
+
"pctx": "run-pctx.js"
|
|
6
|
+
},
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"axios": "^1.12.2",
|
|
9
|
+
"axios-proxy-builder": "^0.1.2",
|
|
10
|
+
"console.table": "^0.10.0",
|
|
11
|
+
"detect-libc": "^2.1.2",
|
|
12
|
+
"rimraf": "^6.0.1"
|
|
13
|
+
},
|
|
14
|
+
"description": "Open source framework to connect AI agents to tools and services with code mode",
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"prettier": "^3.6.2"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=14",
|
|
20
|
+
"npm": ">=6"
|
|
21
|
+
},
|
|
22
|
+
"glibcMinimum": {
|
|
23
|
+
"major": 2,
|
|
24
|
+
"series": 35
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://portofcontext.com",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"command-line-utilities",
|
|
29
|
+
"development-tools",
|
|
30
|
+
"mcp",
|
|
31
|
+
"ai",
|
|
32
|
+
"agents",
|
|
33
|
+
"code-mode",
|
|
34
|
+
"model-context-protocol"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"name": "@portofcontext/pctx",
|
|
38
|
+
"preferUnplugged": true,
|
|
39
|
+
"repository": "https://github.com/portofcontext/pctx",
|
|
40
|
+
"scripts": {
|
|
41
|
+
"fmt": "prettier --write **/*.js",
|
|
42
|
+
"fmt:check": "prettier --check **/*.js",
|
|
43
|
+
"postinstall": "node ./install.js"
|
|
44
|
+
},
|
|
45
|
+
"supportedPlatforms": {
|
|
46
|
+
"aarch64-apple-darwin": {
|
|
47
|
+
"artifactName": "pctx-aarch64-apple-darwin.tar.gz",
|
|
48
|
+
"bins": {
|
|
49
|
+
"generate-cli-docs": "generate-cli-docs",
|
|
50
|
+
"pctx": "pctx"
|
|
51
|
+
},
|
|
52
|
+
"zipExt": ".tar.gz"
|
|
53
|
+
},
|
|
54
|
+
"aarch64-unknown-linux-gnu": {
|
|
55
|
+
"artifactName": "pctx-aarch64-unknown-linux-gnu.tar.gz",
|
|
56
|
+
"bins": {
|
|
57
|
+
"generate-cli-docs": "generate-cli-docs",
|
|
58
|
+
"pctx": "pctx"
|
|
59
|
+
},
|
|
60
|
+
"zipExt": ".tar.gz"
|
|
61
|
+
},
|
|
62
|
+
"x86_64-apple-darwin": {
|
|
63
|
+
"artifactName": "pctx-x86_64-apple-darwin.tar.gz",
|
|
64
|
+
"bins": {
|
|
65
|
+
"generate-cli-docs": "generate-cli-docs",
|
|
66
|
+
"pctx": "pctx"
|
|
67
|
+
},
|
|
68
|
+
"zipExt": ".tar.gz"
|
|
69
|
+
},
|
|
70
|
+
"x86_64-unknown-linux-gnu": {
|
|
71
|
+
"artifactName": "pctx-x86_64-unknown-linux-gnu.tar.gz",
|
|
72
|
+
"bins": {
|
|
73
|
+
"generate-cli-docs": "generate-cli-docs",
|
|
74
|
+
"pctx": "pctx"
|
|
75
|
+
},
|
|
76
|
+
"zipExt": ".tar.gz"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"version": "0.1.1",
|
|
80
|
+
"volta": {
|
|
81
|
+
"node": "18.14.1",
|
|
82
|
+
"npm": "9.5.0"
|
|
83
|
+
}
|
|
84
|
+
}
|
package/run-pctx.js
ADDED