@toolu/cli 6.8.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/LICENSE +21 -0
- package/README.md +55 -0
- package/assets/marketplace.json +147 -0
- package/dist/cli.js +3713 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@toolu/cli",
|
|
3
|
+
"version": "6.8.1",
|
|
4
|
+
"description": "Install toolu plugins and Codex agent profiles into Claude Code, Codex, and OpenCode.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude-code",
|
|
7
|
+
"codex",
|
|
8
|
+
"opencode",
|
|
9
|
+
"plugins",
|
|
10
|
+
"cli"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/Falconiere/toolu.git"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/Falconiere/toolu#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/Falconiere/toolu/issues"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"bin": {
|
|
23
|
+
"toolu": "dist/cli.js"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20.12"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist/cli.js",
|
|
34
|
+
"assets"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "mkdir -p assets dist && cp ../../.claude-plugin/marketplace.json assets/marketplace.json && bun build src/cli.ts --target=node --outfile=dist/cli.js && chmod 755 dist/cli.js",
|
|
38
|
+
"prepack": "bun run build >/dev/null"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"zod": "4.1.5"
|
|
42
|
+
}
|
|
43
|
+
}
|