-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "continues",
"version": "4.0.12",
"description": "Never lose context. Resume any AI coding session across Claude Code, Codex, Copilot, Gemini CLI, Cursor, Amp, Cline, Roo Code, Kilo Code, Kiro, Crush, OpenCode, Droid & Antigravity.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": "./dist/cli.js"
},
"bin": {
"continues": "dist/cli.js",
"cont": "dist/cli.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"postinstall": "echo '\n continues v3.0.0 — Major refactor with typed schemas, library exports & Cursor support!\n Run `continues list` to see all sessions.\n'",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"check": "pnpm lint && pnpm build",
"link": "pnpm build && pnpm link --global",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yigitkonur/cli-continues.git"
},
"keywords": [
"ai",
"coding-assistant",
"codex",
"claude",
"copilot",
"gemini",
"opencode",
"droid",
"factory",
"session",
"resume",
"context",
"cli",
"developer-tools",
"productivity",
"rate-limit",
"session-handoff",
"context-switch",
"cross-tool",
"cursor"
],
"author": "Yigit Konur",
"license": "MIT",
"bugs": {
"url": "https://github.com/yigitkonur/cli-continues/issues"
},
"homepage": "https://github.com/yigitkonur/cli-continues#readme",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"ora": "^5.4.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^25.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}