forked from option-K/opencode-plugin-mempalace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "opencode-plugin-mempalace",
"version": "1.2.1",
"description": "An OpenCode plugin that integrates MemPalace's lifetime memory (L0-L3 memory stack, AAAK compression, auto context saving) into the OpenCode terminal assistant.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c jest.config.cjs",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"mempalace",
"ai-memory",
"context",
"aaak",
"llm",
"terminal"
],
"author": "Kevin <131496729+option-K@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/option-K/opencode-plugin-mempalace.git"
},
"bugs": {
"url": "https://github.com/option-K/opencode-plugin-mempalace/issues"
},
"homepage": "https://github.com/option-K/opencode-plugin-mempalace#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"execa": "^5.1.1"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.4.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}