-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 962 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
37
38
39
40
41
42
43
44
{
"name": "automode",
"version": "0.1.0",
"description": "A mod menu for Claude Code and Codex: auto continue past usage limits, auto ping to align your limit windows with your workday",
"keywords": [
"claude",
"claude-code",
"codex",
"cli",
"rate-limit",
"pty",
"mod-menu",
"auto-continue"
],
"license": "MIT",
"author": "Adriel Mendes <adriel.amendes12@gmail.com>",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"automode": "dist/src/cli.js"
},
"files": [
"dist/src",
"scripts",
"README.md",
"LICENSE"
],
"dependencies": {
"node-pty": "^1.1.0",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc",
"test": "npm run build && node --test dist/tests/*.test.js",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/fix-node-pty.mjs"
}
}