@samooth/open-codex 0.1.45
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 +93 -0
- package/dist/cli.js +884 -0
- package/dist/cli.js.map +7 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@samooth/open-codex",
|
|
3
|
+
"version": "0.1.45",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"bin": {
|
|
6
|
+
"open-codex": "dist/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=22"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"format": "prettier --check src tests",
|
|
14
|
+
"format:fix": "prettier --write src tests",
|
|
15
|
+
"dev": "tsc --watch",
|
|
16
|
+
"lint": "eslint src tests --ext ts --ext tsx --report-unused-disable-directives --max-warnings 0",
|
|
17
|
+
"lint:fix": "eslint src tests --ext ts --ext tsx --fix",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest --watch",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"build": "node build.mjs",
|
|
22
|
+
"build:dev": "NODE_ENV=development node build.mjs --dev && NODE_OPTIONS=--enable-source-maps node dist/cli-dev.js",
|
|
23
|
+
"release:readme": "cp ../README.md ./README.md",
|
|
24
|
+
"release:version": "npm run build:dev -- -a full-auto 'update the CLI_VERSION in codex-cli/src/utils/session.ts and the version in package.json to the next value.'",
|
|
25
|
+
"release": "npm run release:readme && npm run release:version && npm run build && npm publish"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@huggingface/hub": "^2.8.0",
|
|
32
|
+
"@inkjs/ui": "^2.0.0",
|
|
33
|
+
"chalk": "^5.2.0",
|
|
34
|
+
"diff": "^7.0.0",
|
|
35
|
+
"dotenv": "^16.1.4",
|
|
36
|
+
"fast-deep-equal": "^3.1.3",
|
|
37
|
+
"file-type": "^20.1.0",
|
|
38
|
+
"ink": "^5.2.0",
|
|
39
|
+
"marked": "^15.0.7",
|
|
40
|
+
"marked-terminal": "^7.3.0",
|
|
41
|
+
"meow": "^13.2.0",
|
|
42
|
+
"open": "^10.1.0",
|
|
43
|
+
"openai": "^4.89.0",
|
|
44
|
+
"react": "^18.2.0",
|
|
45
|
+
"shell-quote": "^1.8.2",
|
|
46
|
+
"to-rotated": "^1.0.0",
|
|
47
|
+
"use-interval": "1.4.0",
|
|
48
|
+
"zod": "^3.25.76"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@eslint/js": "^9.22.0",
|
|
52
|
+
"@types/diff": "^7.0.2",
|
|
53
|
+
"@types/js-yaml": "^4.0.9",
|
|
54
|
+
"@types/marked-terminal": "^6.1.1",
|
|
55
|
+
"@types/react": "^18.0.32",
|
|
56
|
+
"@types/shell-quote": "^1.7.5",
|
|
57
|
+
"@types/which": "^3.0.4",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
59
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
60
|
+
"boxen": "^8.0.1",
|
|
61
|
+
"esbuild": "^0.25.2",
|
|
62
|
+
"eslint-plugin-import": "^2.31.0",
|
|
63
|
+
"eslint-plugin-react": "^7.32.2",
|
|
64
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
65
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
66
|
+
"ink-testing-library": "^3.0.0",
|
|
67
|
+
"prettier": "^2.8.7",
|
|
68
|
+
"punycode": "^2.3.1",
|
|
69
|
+
"ts-node": "^10.9.1",
|
|
70
|
+
"typescript": "^5.0.3",
|
|
71
|
+
"vitest": "^3.0.9",
|
|
72
|
+
"whatwg-url": "^14.2.0",
|
|
73
|
+
"which": "^5.0.0"
|
|
74
|
+
},
|
|
75
|
+
"resolutions": {
|
|
76
|
+
"braces": "^3.0.3",
|
|
77
|
+
"micromatch": "^4.0.8",
|
|
78
|
+
"semver": "^7.7.1"
|
|
79
|
+
},
|
|
80
|
+
"overrides": {
|
|
81
|
+
"punycode": "^2.3.1"
|
|
82
|
+
},
|
|
83
|
+
"repository": {
|
|
84
|
+
"type": "git",
|
|
85
|
+
"url": "https://github.com/ymichael/codex"
|
|
86
|
+
}
|
|
87
|
+
}
|