-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "continuation-layer",
"version": "0.2.0",
"description": "Durable continuation layer for Codex long-running CLI coding-agent tasks.",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Hsi431/continuation-layer.git"
},
"bugs": {
"url": "https://github.com/Hsi431/continuation-layer/issues"
},
"homepage": "https://github.com/Hsi431/continuation-layer#readme",
"keywords": [
"codex",
"coding-agent",
"cli",
"agent-continuity",
"durable-state",
"handoff",
"automation"
],
"files": [
"bin/",
"src/",
"plugins/",
"docs/",
"README.md",
"README.zh-TW.md",
"LICENSE"
],
"bin": {
"continuity": "./bin/continuity.mjs"
},
"scripts": {
"check": "node --check bin/continuity.mjs && find src tests plugins -name '*.mjs' -print0 | xargs -0 -n1 node --check",
"format": "prettier --write \"**/*.{js,mjs,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,mjs,json,md,yml,yaml}\"",
"pack:check": "npm pack --dry-run",
"test": "node --test tests/*.test.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"prettier": "^3.9.4"
},
"dependencies": {
"node-pty": "^1.1.0"
}
}