-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.47 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-session-recall",
"version": "0.11.0",
"type": "module",
"description": "Everything your agent ever did is already in the database — this plugin lets it look",
"main": "./dist/opencode-session-recall.js",
"exports": {
".": {
"types": "./dist/opencode-session-recall.d.ts",
"import": "./dist/opencode-session-recall.js"
},
"./server": {
"types": "./dist/opencode-session-recall.d.ts",
"import": "./dist/opencode-session-recall.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "opencode plugin dev",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fix": "npm run format && npm run lint:fix",
"test": "vitest run",
"test:typecheck": "tsc -p tsconfig.test.json --noEmit",
"typecheck": "tsc --noEmit",
"compile": "tsup src/opencode-session-recall.ts --format esm && tsc --emitDeclarationOnly --outDir dist",
"check": "npm run format:check && npm run lint && npm run test:typecheck && npm run test && npm run typecheck && npm run compile",
"check:clean": "git diff --quiet && git diff --cached --quiet",
"ci": "npm run check",
"precommit": "sh scripts/precommit.sh",
"prepush": "sh scripts/prepush.sh",
"prepare": "husky",
"prepublishOnly": "npm run typecheck && npm run compile"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"recall",
"history",
"compaction",
"context",
"search",
"memory"
],
"author": "maelos",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmk40/opencode-session-recall.git"
},
"homepage": "https://github.com/rmk40/opencode-session-recall#readme",
"bugs": {
"url": "https://github.com/rmk40/opencode-session-recall/issues"
},
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": ">=1.2.0"
},
"dependencies": {
"@opencode-ai/sdk": "^1.3.2",
"fastest-levenshtein": "^1.0.16",
"fuse.js": "^7.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@opencode-ai/plugin": "^1.4.3",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.5"
}
}