-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-evermemos-plugin",
"version": "0.2.0",
"description": "Durable project memory for OpenCode via EverMemOS — passive cross-session recall with structured episodic, profile, and foresight memory types",
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"keywords": [
"opencode",
"opencode-plugin",
"evermemos",
"memory",
"ai-memory",
"persistent-memory",
"coding-assistant",
"context"
],
"author": "LordAizen1",
"repository": {
"type": "git",
"url": "https://github.com/LordAizen1/opencode-evermemos-plugin.git"
},
"homepage": "https://github.com/LordAizen1/opencode-evermemos-plugin#readme",
"bugs": {
"url": "https://github.com/LordAizen1/opencode-evermemos-plugin/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"bin": {
"evermemos": "./dist/cli.js"
},
"scripts": {
"evermemos": "node ./dist/cli.js",
"setup": "bun run ./src/cli.ts setup",
"up": "bun run ./src/cli.ts up",
"doctor": "bun run ./src/cli.ts doctor",
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "tsc"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.3.0"
},
"dependencies": {
"@opencode-ai/sdk": ">=1.3.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.3",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}