@hanzo/dev 0.6.66
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/README.md +516 -0
- package/bin/coder.js +470 -0
- package/bin/codex.js +197 -0
- package/package.json +44 -0
- package/postinstall.js +786 -0
- package/scripts/preinstall.js +69 -0
- package/scripts/windows-cleanup.ps1 +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hanzo/dev",
|
|
3
|
+
"version": "0.6.66",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
|
|
6
|
+
"bin": {
|
|
7
|
+
"coder": "bin/coder.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=16"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"bin/coder.js",
|
|
15
|
+
"bin/codex.js",
|
|
16
|
+
"postinstall.js",
|
|
17
|
+
"scripts/preinstall.js",
|
|
18
|
+
"scripts/windows-cleanup.ps1",
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"preinstall": "node scripts/preinstall.js",
|
|
23
|
+
"postinstall": "node postinstall.js",
|
|
24
|
+
"prepublishOnly": "node -e \"const fs=require('fs'),path=require('path'); const repoGit=path.join(__dirname,'..','.git'); const inCi=process.env.GITHUB_ACTIONS==='true'||process.env.CI==='true'; if(fs.existsSync(repoGit) && !inCi){ console.error('Refusing to publish from codex-cli. Publishing happens via release.yml.'); process.exit(1);} else { console.log(inCi ? 'CI publish detected.' : 'Publishing staged package...'); }\""
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/hanzoai/dev.git"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"prettier": "^3.3.3"
|
|
36
|
+
},
|
|
37
|
+
"optionalDependencies": {
|
|
38
|
+
"@hanzo/dev-darwin-arm64": "0.6.66",
|
|
39
|
+
"@hanzo/dev-darwin-x64": "0.6.66",
|
|
40
|
+
"@hanzo/dev-linux-x64-musl": "0.6.66",
|
|
41
|
+
"@hanzo/dev-linux-arm64-musl": "0.6.66",
|
|
42
|
+
"@hanzo/dev-win32-x64": "0.6.66"
|
|
43
|
+
}
|
|
44
|
+
}
|