opencode-working-memory 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "opencode-working-memory",
3
+ "version": "1.0.0",
4
+ "description": "Advanced four-tier memory architecture for OpenCode with intelligent pressure monitoring and auto-storage governance",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "scripts": {
8
+ "build": "node -e \"console.log('No build step required: OpenCode loads index.ts directly')\"",
9
+ "typecheck": "tsc --noEmit"
10
+ },
11
+ "keywords": [
12
+ "opencode",
13
+ "plugin",
14
+ "memory",
15
+ "context-management",
16
+ "ai-agent",
17
+ "llm"
18
+ ],
19
+ "author": "sdwolf4103",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/sdwolf4103/opencode-working-memory.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/sdwolf4103/opencode-working-memory/issues"
27
+ },
28
+ "homepage": "https://github.com/sdwolf4103/opencode-working-memory#readme",
29
+ "peerDependencies": {
30
+ "@opencode-ai/plugin": "^1.2.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/node": "^24.3.0",
34
+ "bun-types": "^1.2.21",
35
+ "typescript": "^5.9.2"
36
+ },
37
+ "engines": {
38
+ "node": ">=18.0.0"
39
+ }
40
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "NodeNext",
5
+ "lib": ["ES2022"],
6
+ "moduleResolution": "NodeNext",
7
+ "types": ["node", "bun-types"],
8
+ "esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ "strict": false,
11
+ "noImplicitAny": false,
12
+ "strictNullChecks": false,
13
+ "strictFunctionTypes": false,
14
+ "strictBindCallApply": false,
15
+ "strictPropertyInitialization": false,
16
+ "noImplicitThis": false,
17
+ "alwaysStrict": true,
18
+ "noUnusedLocals": false,
19
+ "noUnusedParameters": false,
20
+ "noImplicitReturns": true,
21
+ "noFallthroughCasesInSwitch": true,
22
+ "forceConsistentCasingInFileNames": true,
23
+ "resolveJsonModule": true,
24
+ "allowSyntheticDefaultImports": true
25
+ },
26
+ "include": ["index.ts"],
27
+ "exclude": ["node_modules", "dist"]
28
+ }