-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
{
"name": "opencode-lcm",
"version": "0.14.2",
"description": "Long-memory plugin for OpenCode with context-mode interop",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "Isaac Grumberg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Plutarch01/opencode-lcm.git"
},
"homepage": "https://github.com/Plutarch01/opencode-lcm#readme",
"bugs": {
"url": "https://github.com/Plutarch01/opencode-lcm/issues"
},
"engines": {
"node": ">=22"
},
"keywords": [
"opencode",
"plugin",
"memory",
"sqlite",
"context-mode",
"lcm"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"test": "npm run build && tsc -p tests/tsconfig.json && node --test tests/*.test.mjs dist-tests/*.test.js",
"perf:archive": "npm run build && node scripts/perf-archive.mjs",
"dogfood:opencode": "npm run build && node scripts/dogfood-opencode.mjs",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@opencode-ai/plugin": "^1.3.3",
"@types/node": "^25.5.0",
"typescript": "^5.8.3"
}
}