-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 912 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 912 Bytes
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
{
"name": "codex-session-manager",
"version": "0.1.0",
"private": false,
"type": "commonjs",
"description": "Simple TUI to rename, tag, and archive Codex CLI sessions.",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . --ext .ts",
"start": "node dist/src/cli.js",
"dev": "tsx src/cli.ts",
"test": "npm run build && node --test dist/tests/*.test.js"
},
"bin": {
"codex-session-manager": "bin/codex-session-manager.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"tsx": "^4.21.0",
"typescript": "5.9.3"
}
}