-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 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
{
"name": "opencode-current-session",
"version": "0.1.0",
"description": "OpenCode plugin that records the current session ID for investigation handoffs.",
"type": "module",
"license": "MIT",
"author": "Francis",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/prandelicious/opencode-current-session.git"
},
"bugs": {
"url": "https://github.com/prandelicious/opencode-current-session/issues"
},
"homepage": "https://github.com/prandelicious/opencode-current-session#readme",
"keywords": [
"opencode",
"opencode-plugin",
"session",
"handoff",
"jsonl"
],
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./core": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./report": {
"types": "./dist/report.d.ts",
"import": "./dist/report.js"
}
},
"types": "./dist/index.d.ts",
"bin": {
"opencode-current-session": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/plugin.ts src/index.ts src/report.ts src/cli.ts --format esm --dts --clean",
"check": "bun run typecheck && bun run lint && bun run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"install:local": "bun scripts/install-local.mjs",
"lint": "oxlint .",
"prepack": "bun run build",
"prompt": "bun src/cli.ts prompt",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.30",
"@opencode-ai/sdk": ">=1.14.30"
},
"devDependencies": {
"@opencode-ai/plugin": "1.14.30",
"@opencode-ai/sdk": "1.14.30",
"@types/node": "^20.12.12",
"oxlint": "^1.0.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.11"
}