-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 743 Bytes
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@chncaesar/opencode-plugin-memory",
"version": "0.1.1",
"description": "Project-scoped persistent memory plugin for OpenCode — LLM-directed add/update/delete with automatic system prompt injection",
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"test": "tsc && node --test dist/*.test.js"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.18.23",
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
}
}