forked from bristena-op/opencode-session-handoff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.9 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
{
"name": "opencode-session-handoff",
"version": "1.1.0",
"description": "OpenCode plugin for seamless session continuation when context windows fill up",
"keywords": [
"context-window",
"continuation",
"handoff",
"opencode",
"opencode-plugin",
"session"
],
"homepage": "https://github.com/bristena-op/opencode-session-handoff#readme",
"bugs": {
"url": "https://github.com/bristena-op/opencode-session-handoff/issues"
},
"license": "MIT",
"author": "bristena-op",
"repository": {
"type": "git",
"url": "https://github.com/bristena-op/opencode-session-handoff.git"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint -c oxlint.json .",
"lint:fix": "oxlint -c oxlint.json --fix .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsdown",
"check": "bun run format:check && bun run lint && bun run typecheck && bun run test",
"prepublishOnly": "bun run check && bun run build",
"prepare": "husky"
},
"dependencies": {
"@opencode-ai/plugin": "1.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,js}": [
"oxfmt"
],
"*.json": [
"oxfmt"
]
},
"engines": {
"node": ">=18.0.0"
}
}