unleash-cc 1.0.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/run.js +23 -0
- package/bin/unleash-darwin-arm64 +0 -0
- package/bin/unleash-darwin-x64 +0 -0
- package/bin/unleash-linux-arm64 +0 -0
- package/bin/unleash-linux-x64 +0 -0
- package/bin/unleash-win32-arm64.exe +0 -0
- package/bin/unleash-win32-x64.exe +0 -0
- package/package.json +23 -0
package/bin/run.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { execFileSync } = require("child_process");
|
|
3
|
+
const path = require("path");
|
|
4
|
+
const os = require("os");
|
|
5
|
+
|
|
6
|
+
const platform = os.platform();
|
|
7
|
+
const arch = os.arch();
|
|
8
|
+
|
|
9
|
+
let bin;
|
|
10
|
+
if (platform === "win32") {
|
|
11
|
+
bin = arch === "arm64" ? "unleash-win32-arm64.exe" : "unleash-win32-x64.exe";
|
|
12
|
+
} else if (platform === "darwin") {
|
|
13
|
+
bin = arch === "arm64" ? "unleash-darwin-arm64" : "unleash-darwin-x64";
|
|
14
|
+
} else {
|
|
15
|
+
bin = arch === "arm64" ? "unleash-linux-arm64" : "unleash-linux-x64";
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const binPath = path.join(__dirname, bin);
|
|
19
|
+
try {
|
|
20
|
+
execFileSync(binPath, process.argv.slice(2), { stdio: "inherit" });
|
|
21
|
+
} catch (e) {
|
|
22
|
+
process.exit(e.status || 1);
|
|
23
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "unleash-cc",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Unleash Claude Code — 113 patches, zero refusals, zero telemetry, 42 feature gates unlocked",
|
|
5
|
+
"license": "GPL-3.0-or-later",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/VoidChecksum/unleash"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/VoidChecksum/unleash",
|
|
11
|
+
"author": "VoidChecksum",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"claude-code", "binary-patching", "bun-sea",
|
|
14
|
+
"reverse-engineering", "permission-bypass",
|
|
15
|
+
"telemetry-removal", "feature-unlock"
|
|
16
|
+
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"unleash": "bin/run.js"
|
|
19
|
+
},
|
|
20
|
+
"os": ["darwin", "linux", "win32"],
|
|
21
|
+
"cpu": ["x64", "arm64"],
|
|
22
|
+
"files": ["bin/"]
|
|
23
|
+
}
|