-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "cdx-manager",
"version": "0.8.0",
"description": "Terminal session manager for Codex and Claude accounts.",
"license": "MIT",
"author": "Alexandre Agostini",
"homepage": "https://github.com/AlexAgo83/cdx-manager#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexAgo83/cdx-manager.git"
},
"bugs": {
"url": "https://github.com/AlexAgo83/cdx-manager/issues"
},
"keywords": [
"codex",
"claude",
"cli",
"terminal",
"session-manager",
"ai-tools"
],
"engines": {
"node": ">=18"
},
"files": [
"bin",
"!bin/__pycache__",
"!bin/**/*.pyc",
"checksums",
"changelogs",
"src",
"!src/__pycache__",
"!src/**/*.pyc",
"install.sh",
"install.ps1",
"pyproject.toml",
"README.md",
"LICENSE"
],
"bin": {
"cdx": "bin/cdx.js"
},
"scripts": {
"test": "npm run test:py",
"test:py": "node bin/python-runner.js -m unittest discover -s test -p test_*_py.py",
"lint": "node --check bin/cdx.js && node --check bin/python-runner.js && node bin/python-runner.js scripts/verify_project_docs.py && node bin/python-runner.js -m py_compile bin/cdx src/*.py scripts/*.py test/test_*_py.py",
"release:validate": "node bin/python-runner.js scripts/verify_release_checksums.py",
"prepublishOnly": "npm run release:validate && npm run lint && npm test",
"link": "npm link",
"unlink": "npm unlink -g cdx-manager"
}
}