-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "opencode-supermemory-p",
"version": "1.4.0",
"description": "The powered Supermemory plugin for OpenCode — persistent memory for coding agents",
"type": "module",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opencode-supermemory-p": "./dist/cli.js"
},
"scripts": {
"gen:schema": "bun scripts/gen-schema.ts",
"check:schema": "bun scripts/gen-schema.ts && git diff --exit-code assets/config.schema.json",
"build": "bun run gen:schema && tsdown",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"check": "biome check --write",
"format": "biome format --write",
"lint": "biome lint --write",
"clean": "rimraf dist"
},
"keywords": [
"opencode",
"plugin",
"supermemory",
"memory",
"ai",
"coding-agent"
],
"author": "TheOrdinaryWow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TheOrdinaryWow/opencode-supermemory-p"
},
"dependencies": {
"@logtape/file": "^2.0.7",
"@logtape/logtape": "^2.0.7",
"@opencode-ai/plugin": "^1.14.50",
"citty": "^0.2.2",
"fs-extra": "^11.3.5",
"jsonc-parser": "^3.3.1",
"supermemory": "^4.21.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "1.3.14",
"@types/fs-extra": "^11.0.4",
"rimraf": "^6.1.3",
"tsdown": "^0.22.0",
"typescript": "^5.7.3",
"unrun": "^0.3.0"
},
"opencode": {
"type": "plugin",
"hooks": [
"chat.message",
"event"
]
},
"files": [
"dist",
"assets"
]
}